diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-03-06 20:08:11 +0900 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2018-03-17 14:20:52 +0100 |
commit | e22e2d941c948c682b0a3fb293c277993b81dc46 (patch) | |
tree | cc813e053fb86b6dfb0d67efa44881bc92e14403 /drivers/rtc | |
parent | 6735f6dcf71e722ee2fc4fb38ed14ae0e2c119b4 (diff) | |
download | linux-e22e2d941c948c682b0a3fb293c277993b81dc46.tar.gz linux-e22e2d941c948c682b0a3fb293c277993b81dc46.tar.bz2 linux-e22e2d941c948c682b0a3fb293c277993b81dc46.zip |
rtc: at91sam: add 'depends on HAS_IOMEM' to fix unmet dependency
This config select's MFD_SYSCON, but does not depend on HAS_IOMEM.
Compile testing on architecture without HAS_IOMEM causes "unmet
direct dependencies" in Kconfig phase.
Detected by "make ARCH=score allyesconfig".
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Diffstat (limited to 'drivers/rtc')
-rw-r--r-- | drivers/rtc/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/rtc/Kconfig b/drivers/rtc/Kconfig index 3bf649cd7b83..5457d15bbcc0 100644 --- a/drivers/rtc/Kconfig +++ b/drivers/rtc/Kconfig @@ -1423,6 +1423,7 @@ config RTC_DRV_AT91RM9200 config RTC_DRV_AT91SAM9 tristate "AT91SAM9 RTT as RTC" depends on ARCH_AT91 || COMPILE_TEST + depends on HAS_IOMEM select MFD_SYSCON help Some AT91SAM9 SoCs provide an RTT (Real Time Timer) block which |