diff options
author | Daniel Lezcano <daniel.lezcano@linaro.org> | 2016-06-07 11:05:01 +0200 |
---|---|---|
committer | Daniel Lezcano <daniel.lezcano@linaro.org> | 2016-06-28 10:22:18 +0200 |
commit | 5cc87a4df5009c1cbe9e087ad16c0bacdae06809 (patch) | |
tree | 56bf322c7d17903aea9ecd9323b4d64a83ed7b5c /drivers/clocksource | |
parent | b988d3f085f07deca70ba8b90f77a84af8a334a3 (diff) | |
download | linux-5cc87a4df5009c1cbe9e087ad16c0bacdae06809.tar.gz linux-5cc87a4df5009c1cbe9e087ad16c0bacdae06809.tar.bz2 linux-5cc87a4df5009c1cbe9e087ad16c0bacdae06809.zip |
clocksource/drivers/versatile: Add the COMPILE_TEST option
Change the Kconfig option logic to fullfil with the current approach,
allowing the user to compile the driver on different platforms.
The current option let the user to select the clocksource or not.
The Kconfig option policy is to let the platform to select the
timer automatically.
Add the COMPILE_TEST option, so the prompt to select the driver will
be showed only when COMPILE_TEST is set and will let this driver
to compile on different platform, thus increasing the compilation
test coverage.
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Diffstat (limited to 'drivers/clocksource')
-rw-r--r-- | drivers/clocksource/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clocksource/Kconfig b/drivers/clocksource/Kconfig index 3086e742b3ce..7acdf3d735ac 100644 --- a/drivers/clocksource/Kconfig +++ b/drivers/clocksource/Kconfig @@ -453,8 +453,8 @@ config CLKSRC_QCOM Qualcomm SoCs. config CLKSRC_VERSATILE - bool "ARM Versatile (Express) reference platforms clock source" - depends on PLAT_VERSATILE && GENERIC_SCHED_CLOCK && !ARCH_USES_GETTIMEOFFSET + bool "ARM Versatile (Express) reference platforms clock source" if COMPILE_TEST + depends on GENERIC_SCHED_CLOCK && !ARCH_USES_GETTIMEOFFSET select CLKSRC_OF default y if MFD_VEXPRESS_SYSREG help |