]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
platform/x86: thinkpad_acpi: Use devm_platform_profile_register()
authorKurt Borja <kuurtb@gmail.com>
Thu, 16 Jan 2025 00:27:16 +0000 (19:27 -0500)
committerIlpo Järvinen <ilpo.jarvinen@linux.intel.com>
Fri, 17 Jan 2025 16:16:49 +0000 (18:16 +0200)
Replace platform_profile_register() with it's device managed version.

Reviewed-by: Mario Limonciello <mario.limonciello@amd.com>
Signed-off-by: Kurt Borja <kuurtb@gmail.com>
Reviewed-by: Mark Pearson <mpearson-lenovo@squebb.ca>
Tested-by: Mark Pearson <mpearson-lenovo@squebb.ca>
Link: https://lore.kernel.org/r/20250116002721.75592-15-kuurtb@gmail.com
Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
drivers/platform/x86/thinkpad_acpi.c

index 62b2ddfe7c0ad262084e9f319636a31fb41b0ae8..c9226e8dc7138cd47613427a37fb287bbe5ac84f 100644 (file)
@@ -10650,7 +10650,7 @@ static int tpacpi_dytc_profile_init(struct ibm_init_struct *iibm)
 
        dytc_profile.dev = &tpacpi_pdev->dev;
        /* Create platform_profile structure and register */
-       err = platform_profile_register(&dytc_profile, NULL);
+       err = devm_platform_profile_register(&dytc_profile, NULL);
        /*
         * If for some reason platform_profiles aren't enabled
         * don't quit terminally.
@@ -10668,14 +10668,8 @@ static int tpacpi_dytc_profile_init(struct ibm_init_struct *iibm)
        return 0;
 }
 
-static void dytc_profile_exit(void)
-{
-       platform_profile_remove(&dytc_profile);
-}
-
 static struct ibm_struct  dytc_profile_driver_data = {
        .name = "dytc-profile",
-       .exit = dytc_profile_exit,
 };
 
 /*************************************************************************