From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932233AbbHFPci (ORCPT ); Thu, 6 Aug 2015 11:32:38 -0400 Received: from mail-wi0-f170.google.com ([209.85.212.170]:35761 "EHLO mail-wi0-f170.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753926AbbHFPch (ORCPT ); Thu, 6 Aug 2015 11:32:37 -0400 From: Daniel Lezcano To: mingo@kernel.org, tglx@linutronix.de Cc: linux-kernel@vger.kernel.org, Maxime Coquelin , Paul Gortmaker , kbuild test robot Subject: [PATCH 1/2] clockevents/drivers/timer-stm32: Improve dependencies of timer-stm32 Date: Thu, 6 Aug 2015 17:32:05 +0200 Message-Id: <1438875126-12596-1-git-send-email-daniel.lezcano@linaro.org> X-Mailer: git-send-email 1.9.1 In-Reply-To: <55C37D4A.6000302@linaro.org> References: <55C37D4A.6000302@linaro.org> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Maxime Coquelin 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 Cc: Paul Gortmaker Cc: Daniel Lezcano Cc: Thomas Gleixner Signed-off-by: Maxime Coquelin Signed-off-by: Daniel Lezcano --- drivers/clocksource/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 1.9.1