Commit 375b26c9 authored by Paul Cercueil's avatar Paul Cercueil Committed by Andi Shyti
Browse files

i2c: exynos5: Remove #ifdef guards for PM related functions



Use the new 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: default avatarPaul Cercueil <paul@crapouillou.net>
Reviewed-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
Link: https://lore.kernel.org/r/20230722115046.27323-7-paul@crapouillou.net


Signed-off-by: default avatarAndi Shyti <andi.shyti@kernel.org>
parent a9e4d8b6
Loading
Loading
Loading
Loading
+3 −5
Original line number Diff line number Diff line
@@ -892,7 +892,6 @@ static void exynos5_i2c_remove(struct platform_device *pdev)
	clk_unprepare(i2c->pclk);
}

#ifdef CONFIG_PM_SLEEP
static int exynos5_i2c_suspend_noirq(struct device *dev)
{
	struct exynos5_i2c *i2c = dev_get_drvdata(dev);
@@ -934,10 +933,9 @@ static int exynos5_i2c_resume_noirq(struct device *dev)
	clk_disable_unprepare(i2c->pclk);
	return ret;
}
#endif

static const struct dev_pm_ops exynos5_i2c_dev_pm_ops = {
	SET_NOIRQ_SYSTEM_SLEEP_PM_OPS(exynos5_i2c_suspend_noirq,
	NOIRQ_SYSTEM_SLEEP_PM_OPS(exynos5_i2c_suspend_noirq,
				  exynos5_i2c_resume_noirq)
};

@@ -946,7 +944,7 @@ static struct platform_driver exynos5_i2c_driver = {
	.remove_new	= exynos5_i2c_remove,
	.driver		= {
		.name	= "exynos5-hsi2c",
		.pm	= &exynos5_i2c_dev_pm_ops,
		.pm	= pm_sleep_ptr(&exynos5_i2c_dev_pm_ops),
		.of_match_table = exynos5_i2c_match,
	},
};