diff mbox

[1/2] clockevents/drivers/timer-stm32: Improve dependencies of timer-stm32

Message ID 1438875126-12596-1-git-send-email-daniel.lezcano@linaro.org
State New
Headers show

Commit Message

Daniel Lezcano Aug. 6, 2015, 3:32 p.m. UTC
From: Maxime Coquelin <mcoquelin.stm32@gmail.com>

This patch improves the build coverage with COMPILE_TEST so it is not only
limited to ARM builds.

The fix consists in making the STM32 timer depend on GENERIC_CLOCKEVENTS.

Reported-by: kbuild test robot <fengguang.wu@intel.com>
Cc: Paul Gortmaker <paul.gortmaker@windriver.com>
Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Maxime Coquelin <mcoquelin.stm32@gmail.com>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
---
 drivers/clocksource/Kconfig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox

Patch

diff --git a/drivers/clocksource/Kconfig b/drivers/clocksource/Kconfig
index 4e57730..e110ec3 100644
--- a/drivers/clocksource/Kconfig
+++ b/drivers/clocksource/Kconfig
@@ -112,8 +112,8 @@  config CLKSRC_LPC32XX
 	select CLKSRC_OF
 
 config CLKSRC_STM32
-	bool "Clocksource for STM32 SoCs" if !ARCH_STM32
-	depends on OF && ARM && (ARCH_STM32 || COMPILE_TEST)
+	bool "Clocksource for STM32 SoCs" if COMPILE_TEST
+	depends on OF && GENERIC_CLOCKEVENTS
 	select CLKSRC_MMIO
 
 config ARM_ARCH_TIMER