platform/x86: hp-wmi: rename platform_profile_* function symbols
authorMario Limonciello <mario.limonciello@amd.com>
Tue, 26 Oct 2021 19:08:33 +0000 (14:08 -0500)
committerHans de Goede <hdegoede@redhat.com>
Wed, 27 Oct 2021 14:07:31 +0000 (16:07 +0200)
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>
drivers/platform/x86/hp-wmi.c

index 8e31ffadf8948c91ad60d2e558e2dd8417e5822e..48a46466f0862f9bc3522028c0ba9439f5afe18e 100644 (file)
@@ -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);