aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel
diff options
context:
space:
mode:
authorSubrata Banik <subratabanik@google.com>2022-12-19 16:22:37 +0530
committerSubrata Banik <subratabanik@google.com>2022-12-22 08:03:16 +0000
commit9ea73d199968f6b1f1640917c2ab95609b5da652 (patch)
treeff7d028557cb52edab4f6f45ca6a83aed44cda8d /src/soc/intel
parent193f39bfd538bb00c75a6ec2651b802636840910 (diff)
drivers/intel/dptf: Add `soc_` prefix for `get_dptf_platform_info()`
This patch makes the SoC specific callback code more readable by adding `soc_` prefix into the `get_dptf_platform_info()`. In nutshell this patch renames `get_dptf_platform_info()` to `soc_get_dptf_platform_info()`. TEST=Able to build Google/Rex without any compilation issue. Signed-off-by: Subrata Banik <subratabanik@google.com> Change-Id: I27d6a146d5928e1742f82f85f51ad42656f46344 Reviewed-on: https://review.coreboot.org/c/coreboot/+/71096 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Sumeet R Pawnikar <sumeet.r.pawnikar@intel.com>
Diffstat (limited to 'src/soc/intel')
-rw-r--r--src/soc/intel/alderlake/dptf.c2
-rw-r--r--src/soc/intel/apollolake/dptf.c2
-rw-r--r--src/soc/intel/cannonlake/dptf.c2
-rw-r--r--src/soc/intel/jasperlake/dptf.c2
-rw-r--r--src/soc/intel/tigerlake/dptf.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/src/soc/intel/alderlake/dptf.c b/src/soc/intel/alderlake/dptf.c
index 7016d8c1bd..e01e71627f 100644
--- a/src/soc/intel/alderlake/dptf.c
+++ b/src/soc/intel/alderlake/dptf.c
@@ -28,7 +28,7 @@ static const struct dptf_platform_info adl_dptf_platform_info = {
},
};
-const struct dptf_platform_info *get_dptf_platform_info(void)
+const struct dptf_platform_info *soc_get_dptf_platform_info(void)
{
return &adl_dptf_platform_info;
}
diff --git a/src/soc/intel/apollolake/dptf.c b/src/soc/intel/apollolake/dptf.c
index b5accc99c5..391a2d1ed0 100644
--- a/src/soc/intel/apollolake/dptf.c
+++ b/src/soc/intel/apollolake/dptf.c
@@ -12,7 +12,7 @@ static const struct dptf_platform_info apl_dptf_platform_info = {
.fan_hid = "INT3404",
};
-const struct dptf_platform_info *get_dptf_platform_info(void)
+const struct dptf_platform_info *soc_get_dptf_platform_info(void)
{
return &apl_dptf_platform_info;
}
diff --git a/src/soc/intel/cannonlake/dptf.c b/src/soc/intel/cannonlake/dptf.c
index d842858712..8f1f98a9e8 100644
--- a/src/soc/intel/cannonlake/dptf.c
+++ b/src/soc/intel/cannonlake/dptf.c
@@ -12,7 +12,7 @@ static const struct dptf_platform_info cnl_dptf_platform_info = {
.fan_hid = "INT3404",
};
-const struct dptf_platform_info *get_dptf_platform_info(void)
+const struct dptf_platform_info *soc_get_dptf_platform_info(void)
{
return &cnl_dptf_platform_info;
}
diff --git a/src/soc/intel/jasperlake/dptf.c b/src/soc/intel/jasperlake/dptf.c
index be6804cd45..4ee38de2a1 100644
--- a/src/soc/intel/jasperlake/dptf.c
+++ b/src/soc/intel/jasperlake/dptf.c
@@ -12,7 +12,7 @@ static const struct dptf_platform_info jsl_dptf_platform_info = {
.fan_hid = "INT3404",
};
-const struct dptf_platform_info *get_dptf_platform_info(void)
+const struct dptf_platform_info *soc_get_dptf_platform_info(void)
{
return &jsl_dptf_platform_info;
}
diff --git a/src/soc/intel/tigerlake/dptf.c b/src/soc/intel/tigerlake/dptf.c
index 2f4cf5f5ae..482e3c200a 100644
--- a/src/soc/intel/tigerlake/dptf.c
+++ b/src/soc/intel/tigerlake/dptf.c
@@ -13,7 +13,7 @@ static const struct dptf_platform_info tgl_dptf_platform_info = {
.fan_hid = "INTC1044",
};
-const struct dptf_platform_info *get_dptf_platform_info(void)
+const struct dptf_platform_info *soc_get_dptf_platform_info(void)
{
return &tgl_dptf_platform_info;
}