diff options
author | Mario Limonciello <mario.limonciello@amd.com> | 2021-10-26 14:08:33 -0500 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2021-10-27 16:07:31 +0200 |
commit | d411e370978fcbf2135a51b43e9acabc879b304b (patch) | |
tree | f71667cfdd67a376644d15a42eb0c24891f6eef7 /drivers | |
parent | 9587f39277ef799ab3be7bb04b191bdf1a3e697a (diff) |
platform/x86: hp-wmi: rename platform_profile_* function symbols
An upcoming change to platform profiles will export `platform_profile_get`
as a symbol that can be used by other drivers. Avoid the collision.
Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
Link: https://lore.kernel.org/r/20211026190835.10697-2-mario.limonciello@amd.com
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/platform/x86/hp-wmi.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/platform/x86/hp-wmi.c b/drivers/platform/x86/hp-wmi.c index 8e31ffadf894..48a46466f086 100644 --- a/drivers/platform/x86/hp-wmi.c +++ b/drivers/platform/x86/hp-wmi.c @@ -1061,8 +1061,8 @@ static int thermal_profile_set(int thermal_profile) sizeof(thermal_profile), 0); } -static int platform_profile_get(struct platform_profile_handler *pprof, - enum platform_profile_option *profile) +static int hp_wmi_platform_profile_get(struct platform_profile_handler *pprof, + enum platform_profile_option *profile) { int tp; @@ -1087,8 +1087,8 @@ static int platform_profile_get(struct platform_profile_handler *pprof, return 0; } -static int platform_profile_set(struct platform_profile_handler *pprof, - enum platform_profile_option profile) +static int hp_wmi_platform_profile_set(struct platform_profile_handler *pprof, + enum platform_profile_option profile) { int err, tp; @@ -1147,8 +1147,8 @@ static int thermal_profile_setup(void) if (err) return err; - platform_profile_handler.profile_get = platform_profile_get; - platform_profile_handler.profile_set = platform_profile_set; + platform_profile_handler.profile_get = hp_wmi_platform_profile_get; + platform_profile_handler.profile_set = hp_wmi_platform_profile_set; } set_bit(PLATFORM_PROFILE_COOL, platform_profile_handler.choices); |