mirror of
https://github.com/torvalds/linux.git
synced 2024-11-25 05:32:00 +00:00
pinctrl: mvebu: Switch to use DEFINE_NOIRQ_DEV_PM_OPS() helper
Since pm.h provides a helper for system no-IRQ PM callbacks, switch the driver to use it instead of open coded variant. Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Reviewed-by: Paul Cercueil <paul@crapouillou.net> Link: https://lore.kernel.org/r/20230717172821.62827-9-andriy.shevchenko@linux.intel.com Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
This commit is contained in:
parent
f0d8d0eea5
commit
c9008b71be
@ -1013,7 +1013,6 @@ static int armada_37xx_pinctrl_register(struct platform_device *pdev,
|
||||
return 0;
|
||||
}
|
||||
|
||||
#if defined(CONFIG_PM)
|
||||
static int armada_3700_pinctrl_suspend(struct device *dev)
|
||||
{
|
||||
struct armada_37xx_pinctrl *info = dev_get_drvdata(dev);
|
||||
@ -1107,15 +1106,8 @@ static int armada_3700_pinctrl_resume(struct device *dev)
|
||||
* Since pinctrl is an infrastructure module, its resume should be issued prior
|
||||
* to other IO drivers.
|
||||
*/
|
||||
static const struct dev_pm_ops armada_3700_pinctrl_pm_ops = {
|
||||
.suspend_noirq = armada_3700_pinctrl_suspend,
|
||||
.resume_noirq = armada_3700_pinctrl_resume,
|
||||
};
|
||||
|
||||
#define PINCTRL_ARMADA_37XX_DEV_PM_OPS (&armada_3700_pinctrl_pm_ops)
|
||||
#else
|
||||
#define PINCTRL_ARMADA_37XX_DEV_PM_OPS NULL
|
||||
#endif /* CONFIG_PM */
|
||||
static DEFINE_NOIRQ_DEV_PM_OPS(armada_3700_pinctrl_pm_ops,
|
||||
armada_3700_pinctrl_suspend, armada_3700_pinctrl_resume);
|
||||
|
||||
static const struct of_device_id armada_37xx_pinctrl_of_match[] = {
|
||||
{
|
||||
@ -1182,7 +1174,7 @@ static struct platform_driver armada_37xx_pinctrl_driver = {
|
||||
.driver = {
|
||||
.name = "armada-37xx-pinctrl",
|
||||
.of_match_table = armada_37xx_pinctrl_of_match,
|
||||
.pm = PINCTRL_ARMADA_37XX_DEV_PM_OPS,
|
||||
.pm = pm_sleep_ptr(&armada_3700_pinctrl_pm_ops),
|
||||
},
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user