mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-06 08:47:44 -04:00
pwm: dwc: use pm_sleep_ptr() macro
Since we don't have runtime PM handles here, we should be using
pm_sleep_ptr() macro, so that the compiler can discard it in case
CONFIG_PM_SLEEP=n.
Fixes: 30b5b066fa ("pwm: dwc: Use DEFINE_SIMPLE_DEV_PM_OPS for PM functions")
Signed-off-by: Raag Jadav <raag.jadav@intel.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20240212130247.9985-2-raag.jadav@intel.com
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
This commit is contained in:
committed by
Uwe Kleine-König
parent
5f62383558
commit
7cfce2b80d
@@ -120,7 +120,7 @@ static struct pci_driver dwc_pwm_driver = {
|
||||
.remove = dwc_pwm_remove,
|
||||
.id_table = dwc_pwm_id_table,
|
||||
.driver = {
|
||||
.pm = pm_ptr(&dwc_pwm_pm_ops),
|
||||
.pm = pm_sleep_ptr(&dwc_pwm_pm_ops),
|
||||
},
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user