gpio: msc313: Use modern PM macros
Use the modern PM macros for the suspend and resume functions to be automatically dropped by the compiler when CONFIG_PM or CONFIG_PM_SLEEP are disabled, without having to use __maybe_unused Signed-off-by: Jisheng Zhang <jszhang@kernel.org> Acked-by: Linus Walleij <linus.walleij@linaro.org> Reviewed-by: Andy Shevchenko <andriy.shevchenko@intel.com> Link: https://lore.kernel.org/r/20251124002105.25429-8-jszhang@kernel.org Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>pull/1354/merge
parent
a92f492a14
commit
07a251bfe3
|
|
@ -694,7 +694,7 @@ static const struct of_device_id msc313_gpio_of_match[] = {
|
|||
* SoC goes into suspend to memory mode so we need to save some
|
||||
* of the register bits before suspending and put it back when resuming
|
||||
*/
|
||||
static int __maybe_unused msc313_gpio_suspend(struct device *dev)
|
||||
static int msc313_gpio_suspend(struct device *dev)
|
||||
{
|
||||
struct msc313_gpio *gpio = dev_get_drvdata(dev);
|
||||
int i;
|
||||
|
|
@ -705,7 +705,7 @@ static int __maybe_unused msc313_gpio_suspend(struct device *dev)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static int __maybe_unused msc313_gpio_resume(struct device *dev)
|
||||
static int msc313_gpio_resume(struct device *dev)
|
||||
{
|
||||
struct msc313_gpio *gpio = dev_get_drvdata(dev);
|
||||
int i;
|
||||
|
|
@ -716,13 +716,13 @@ static int __maybe_unused msc313_gpio_resume(struct device *dev)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static SIMPLE_DEV_PM_OPS(msc313_gpio_ops, msc313_gpio_suspend, msc313_gpio_resume);
|
||||
static DEFINE_SIMPLE_DEV_PM_OPS(msc313_gpio_ops, msc313_gpio_suspend, msc313_gpio_resume);
|
||||
|
||||
static struct platform_driver msc313_gpio_driver = {
|
||||
.driver = {
|
||||
.name = DRIVER_NAME,
|
||||
.of_match_table = msc313_gpio_of_match,
|
||||
.pm = &msc313_gpio_ops,
|
||||
.pm = pm_sleep_ptr(&msc313_gpio_ops),
|
||||
},
|
||||
.probe = msc313_gpio_probe,
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue