We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2f3cf1 commit a45623dCopy full SHA for a45623d
drivers/pinctrl/stm32/pinctrl-stm32mp157.c
@@ -2342,11 +2342,16 @@ static const struct of_device_id stm32mp157_pctrl_match[] = {
2342
{ }
2343
};
2344
2345
+static const struct dev_pm_ops stm32_pinctrl_dev_pm_ops = {
2346
+ SET_LATE_SYSTEM_SLEEP_PM_OPS(NULL, stm32_pinctrl_resume)
2347
+};
2348
+
2349
static struct platform_driver stm32mp157_pinctrl_driver = {
2350
.probe = stm32_pctl_probe,
2351
.driver = {
2352
.name = "stm32mp157-pinctrl",
2353
.of_match_table = stm32mp157_pctrl_match,
2354
+ .pm = &stm32_pinctrl_dev_pm_ops,
2355
},
2356
2357
0 commit comments