From: Alexandre Belloni Date: Tue, 17 Mar 2020 14:34:21 +0000 (+0100) Subject: rtc: mt2712: fix build without PM_SLEEP X-Git-Tag: microblaze-v5.10~1081^2~25 X-Git-Url: http://git.monstr.eu/?a=commitdiff_plain;h=30a790653d8ac46d3116abe99ba745a7b0c27b8b;p=linux-2.6-microblaze.git rtc: mt2712: fix build without PM_SLEEP Fix this build error when PM_SLEEP is not selected: drivers/rtc/rtc-mt2712.c:412:10: error: ‘mt2712_pm_ops’ undeclared here (not in a function); did you mean ‘mt2712_rtc_ops’? 412 | .pm = &mt2712_pm_ops, | ^~~~~~~~~~~~~ Link: https://lore.kernel.org/r/20200317143421.9551-1-alexandre.belloni@bootlin.com Signed-off-by: Alexandre Belloni --- diff --git a/drivers/rtc/rtc-mt2712.c b/drivers/rtc/rtc-mt2712.c index 62c20241426d..581b8731fb8a 100644 --- a/drivers/rtc/rtc-mt2712.c +++ b/drivers/rtc/rtc-mt2712.c @@ -409,7 +409,9 @@ static struct platform_driver mt2712_rtc_driver = { .driver = { .name = "mt2712-rtc", .of_match_table = mt2712_rtc_of_match, +#ifdef CONFIG_PM_SLEEP .pm = &mt2712_pm_ops, +#endif }, .probe = mt2712_rtc_probe, };