mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-29 18:38:52 -04:00
spi: meson-spifc: 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 #ifdef guards. This has the advantage of always compiling these functions in, independently of any Kconfig option. Thanks to that, bugs and other regressions are subsequently easier to catch. Signed-off-by: Jisheng Zhang <jszhang@kernel.org> Link: https://patch.msgid.link/20260803142003.12857-19-jszhang@kernel.org Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
committed by
Mark Brown
parent
8de18aced4
commit
aceceea2a4
@@ -348,7 +348,6 @@ static void meson_spifc_remove(struct platform_device *pdev)
|
||||
pm_runtime_put_noidle(&pdev->dev);
|
||||
}
|
||||
|
||||
#ifdef CONFIG_PM_SLEEP
|
||||
static int meson_spifc_suspend(struct device *dev)
|
||||
{
|
||||
struct spi_controller *host = dev_get_drvdata(dev);
|
||||
@@ -385,9 +384,7 @@ static int meson_spifc_resume(struct device *dev)
|
||||
|
||||
return ret;
|
||||
}
|
||||
#endif /* CONFIG_PM_SLEEP */
|
||||
|
||||
#ifdef CONFIG_PM
|
||||
static int meson_spifc_runtime_suspend(struct device *dev)
|
||||
{
|
||||
struct spi_controller *host = dev_get_drvdata(dev);
|
||||
@@ -405,13 +402,12 @@ static int meson_spifc_runtime_resume(struct device *dev)
|
||||
|
||||
return clk_prepare_enable(spifc->clk);
|
||||
}
|
||||
#endif /* CONFIG_PM */
|
||||
|
||||
static const struct dev_pm_ops meson_spifc_pm_ops = {
|
||||
SET_SYSTEM_SLEEP_PM_OPS(meson_spifc_suspend, meson_spifc_resume)
|
||||
SET_RUNTIME_PM_OPS(meson_spifc_runtime_suspend,
|
||||
meson_spifc_runtime_resume,
|
||||
NULL)
|
||||
SYSTEM_SLEEP_PM_OPS(meson_spifc_suspend, meson_spifc_resume)
|
||||
RUNTIME_PM_OPS(meson_spifc_runtime_suspend,
|
||||
meson_spifc_runtime_resume,
|
||||
NULL)
|
||||
};
|
||||
|
||||
static const struct of_device_id meson_spifc_dt_match[] = {
|
||||
@@ -427,7 +423,7 @@ static struct platform_driver meson_spifc_driver = {
|
||||
.driver = {
|
||||
.name = "meson-spifc",
|
||||
.of_match_table = of_match_ptr(meson_spifc_dt_match),
|
||||
.pm = &meson_spifc_pm_ops,
|
||||
.pm = pm_ptr(&meson_spifc_pm_ops),
|
||||
},
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user