From 9ea73d199968f6b1f1640917c2ab95609b5da652 Mon Sep 17 00:00:00 2001 From: Subrata Banik Date: Mon, 19 Dec 2022 16:22:37 +0530 Subject: drivers/intel/dptf: Add `soc_` prefix for `get_dptf_platform_info()` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Change-Id: I27d6a146d5928e1742f82f85f51ad42656f46344 Reviewed-on: https://review.coreboot.org/c/coreboot/+/71096 Tested-by: build bot (Jenkins) Reviewed-by: Sumeet R Pawnikar --- src/soc/intel/jasperlake/dptf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/soc/intel/jasperlake') 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; } -- cgit v1.2.3