]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
watchdog: sirfsoc: Add missing dependency on HAS_IOMEM
authorGuenter Roeck <linux@roeck-us.net>
Sun, 8 Nov 2020 16:25:50 +0000 (08:25 -0800)
committerWim Van Sebroeck <wim@linux-watchdog.org>
Sun, 13 Dec 2020 15:17:38 +0000 (16:17 +0100)
If HAS_IOMEM is not defined and SIRFSOC_WATCHDOG is enabled,
the build fails with the following error.

drivers/watchdog/sirfsoc_wdt.o: in function `sirfsoc_wdt_probe':
sirfsoc_wdt.c:(.text+0x112):
undefined reference to `devm_platform_ioremap_resource'

Reported-by: Necip Fazil Yildiran <fazilyildiran@gmail.com>
Fixes: da2a68b3eb47 ("watchdog: Enable COMPILE_TEST where possible")
Link: https://lore.kernel.org/r/20201108162550.27660-2-linux@roeck-us.net
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>
drivers/watchdog/Kconfig

index b3e8bdaa2a112cb091a6e422178bbe357f011fb4..f8e9be65036ae496385b25eaaf7c9d3911e6af85 100644 (file)
@@ -790,6 +790,7 @@ config MOXART_WDT
 
 config SIRFSOC_WATCHDOG
        tristate "SiRFSOC watchdog"
+       depends on HAS_IOMEM
        depends on ARCH_SIRF || COMPILE_TEST
        select WATCHDOG_CORE
        default y