]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
platform/x86: dell-pc: Use devm_platform_profile_register()
authorKurt Borja <kuurtb@gmail.com>
Thu, 16 Jan 2025 00:27:12 +0000 (19:27 -0500)
committerIlpo Järvinen <ilpo.jarvinen@linux.intel.com>
Thu, 16 Jan 2025 15:26:38 +0000 (17:26 +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-11-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/dell/dell-pc.c

index 32b3be0723f8197fca33b80bd6506dad7528e64c..2759bb608b1a77587f024371a5b3946cfa3366da 100644 (file)
@@ -281,7 +281,7 @@ static int thermal_init(void)
        thermal_handler->ops = &dell_pc_platform_profile_ops;
 
        /* Clean up if failed */
-       ret = platform_profile_register(thermal_handler, NULL);
+       ret = devm_platform_profile_register(thermal_handler, NULL);
        if (ret)
                goto cleanup_thermal_handler;
 
@@ -298,8 +298,6 @@ cleanup_platform_device:
 
 static void thermal_cleanup(void)
 {
-       if (thermal_handler)
-               platform_profile_remove(thermal_handler);
        platform_device_unregister(platform_device);
 }