diff options
author | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2022-10-18 22:35:11 +0200 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2022-10-18 22:36:54 +0200 |
commit | db4e955ae333567dea02822624106c0b96a2f84f (patch) | |
tree | 94ac370f765f844a222c7e5c521402c7840da2be /drivers/rtc | |
parent | 0782b66ed2fbb035dda76111df0954515e417b24 (diff) | |
download | linux-stable-db4e955ae333567dea02822624106c0b96a2f84f.tar.gz linux-stable-db4e955ae333567dea02822624106c0b96a2f84f.tar.bz2 linux-stable-db4e955ae333567dea02822624106c0b96a2f84f.zip |
rtc: cmos: fix build on non-ACPI platforms
Now that rtc_wake_setup is called outside of cmos_wake_setup, it also need
to be defined on non-ACPI platforms.
Reported-by: kernel test robot <lkp@intel.com>
Link: https://lore.kernel.org/r/20221018203512.2532407-1-alexandre.belloni@bootlin.com
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Diffstat (limited to 'drivers/rtc')
-rw-r--r-- | drivers/rtc/rtc-cmos.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/rtc/rtc-cmos.c b/drivers/rtc/rtc-cmos.c index 01fb31f8e534..58cc2bae2f8a 100644 --- a/drivers/rtc/rtc-cmos.c +++ b/drivers/rtc/rtc-cmos.c @@ -1346,6 +1346,9 @@ static void cmos_check_acpi_rtc_status(struct device *dev, { } +static void rtc_wake_setup(struct device *dev) +{ +} #endif #ifdef CONFIG_PNP |