clocksource/atmel-st: Add 'depends on HAS_IOMEM' to fix unmet dependency

The ATMEL_ST config selects 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".

Add the proper dependency to the ATMEL_ST config.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
Cc: Arnd Bergmann <arnd@arndb.de>
Link: https://lkml.kernel.org/r/1520335233-11277-1-git-send-email-yamada.masahiro@socionext.com

authored by Masahiro Yamada and committed by Thomas Gleixner bd2746f0 1b88accf

Changed files
+1
drivers
clocksource
+1
drivers/clocksource/Kconfig
··· 386 386 387 387 config ATMEL_ST 388 388 bool "Atmel ST timer support" if COMPILE_TEST 389 + depends on HAS_IOMEM 389 390 select TIMER_OF 390 391 select MFD_SYSCON 391 392 help