Commit 83f7586f authored by Andy Shevchenko's avatar Andy Shevchenko
Browse files

pinctrl: tegra: 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.

With that, make sure the PM ops are used only in CONFIG_PM_SLEEP=y
case by wrapping them in pm_sleep_ptr() macro.

Acked-by: default avatarThierry Reding <treding@nvidia.com>
Link: https://lore.kernel.org/r/20230717172821.62827-11-andriy.shevchenko@linux.intel.com


Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
parent 727eb02e
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -747,10 +747,7 @@ static int tegra_pinctrl_resume(struct device *dev)
	return 0;
}

const struct dev_pm_ops tegra_pinctrl_pm = {
	.suspend_noirq = &tegra_pinctrl_suspend,
	.resume_noirq = &tegra_pinctrl_resume
};
DEFINE_NOIRQ_DEV_PM_OPS(tegra_pinctrl_pm, tegra_pinctrl_suspend, tegra_pinctrl_resume);

static bool tegra_pinctrl_gpio_node_has_range(struct tegra_pmx *pmx)
{
+1 −1
Original line number Diff line number Diff line
@@ -1570,7 +1570,7 @@ static struct platform_driver tegra210_pinctrl_driver = {
	.driver = {
		.name = "tegra210-pinctrl",
		.of_match_table = tegra210_pinctrl_of_match,
		.pm = &tegra_pinctrl_pm,
		.pm = pm_sleep_ptr(&tegra_pinctrl_pm),
	},
	.probe = tegra210_pinctrl_probe,
};