summaryrefslogtreecommitdiffstats
path: root/drivers/pwm/pwm-lpss-platform.c
diff options
context:
space:
mode:
authorRaag Jadav <raag.jadav@intel.com>2024-06-05 18:45:32 +0530
committerUwe Kleine-König <ukleinek@kernel.org>2024-07-10 17:53:51 +0200
commit07612a7621ce3fb5c450877b2ecc76ef4d3c0bf9 (patch)
tree7db760b2707785d4df55494a78dfc680b2821e7c /drivers/pwm/pwm-lpss-platform.c
parent7cea05ae1d4ecbb7a6c3d28f9c483b1f9105526a (diff)
downloadlinux-stable-07612a7621ce3fb5c450877b2ecc76ef4d3c0bf9.tar.gz
linux-stable-07612a7621ce3fb5c450877b2ecc76ef4d3c0bf9.tar.bz2
linux-stable-07612a7621ce3fb5c450877b2ecc76ef4d3c0bf9.zip
pwm: lpss: use devm_pm_runtime_enable() helper
Use devm_pm_runtime_enable() helper to enable runtime PM and drop redundant platform ->remove() callback. Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Raag Jadav <raag.jadav@intel.com> Link: https://lore.kernel.org/r/20240605131533.20037-2-raag.jadav@intel.com Signed-off-by: Uwe Kleine-König <ukleinek@kernel.org>
Diffstat (limited to 'drivers/pwm/pwm-lpss-platform.c')
-rw-r--r--drivers/pwm/pwm-lpss-platform.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/drivers/pwm/pwm-lpss-platform.c b/drivers/pwm/pwm-lpss-platform.c
index dbc9f5b17bdc..5130238a4567 100644
--- a/drivers/pwm/pwm-lpss-platform.c
+++ b/drivers/pwm/pwm-lpss-platform.c
@@ -55,14 +55,7 @@ static int pwm_lpss_probe_platform(struct platform_device *pdev)
DPM_FLAG_SMART_SUSPEND);
pm_runtime_set_active(&pdev->dev);
- pm_runtime_enable(&pdev->dev);
-
- return 0;
-}
-
-static void pwm_lpss_remove_platform(struct platform_device *pdev)
-{
- pm_runtime_disable(&pdev->dev);
+ return devm_pm_runtime_enable(&pdev->dev);
}
static const struct acpi_device_id pwm_lpss_acpi_match[] = {
@@ -80,7 +73,6 @@ static struct platform_driver pwm_lpss_driver_platform = {
.acpi_match_table = pwm_lpss_acpi_match,
},
.probe = pwm_lpss_probe_platform,
- .remove_new = pwm_lpss_remove_platform,
};
module_platform_driver(pwm_lpss_driver_platform);