Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753202AbbFGJBf (ORCPT ); Sun, 7 Jun 2015 05:01:35 -0400 Received: from mail-wi0-f171.google.com ([209.85.212.171]:37062 "EHLO mail-wi0-f171.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750920AbbFGJB1 (ORCPT ); Sun, 7 Jun 2015 05:01:27 -0400 From: Maxime Coquelin To: Daniel Lezcano Cc: Thomas Gleixner , linux-kernel@vger.kernel.org, fengguang.wu@intel.com, luc.vanoostenryck@gmail.com Subject: [PATCH] clockevents/drivers/timer-stm32: Fix build error spotted by kbuild test robot Date: Sun, 7 Jun 2015 11:01:24 +0200 Message-Id: <1433667684-10057-1-git-send-email-mcoquelin.stm32@gmail.com> X-Mailer: git-send-email 1.9.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1387 Lines: 43 This patch fixes below error spotted by kbuild test robot when building with ARCH=ia64: All error/warnings (new ones prefixed by >>): drivers/clocksource/timer-stm32.c:38:28: error: field 'evtdev' has incomplete type struct clock_event_device evtdev; ^ drivers/clocksource/timer-stm32.c:44:19: warning: 'enum clock_event_mode' declared inside parameter list struct clock_event_device *evtdev) The fix consists in making the STM32 timer depend on GENERIC_CLOCKEVENTS. Reported-by: kbuild test robot Signed-off-by: Maxime Coquelin --- drivers/clocksource/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/clocksource/Kconfig b/drivers/clocksource/Kconfig index bec25b3..1778c90 100644 --- a/drivers/clocksource/Kconfig +++ b/drivers/clocksource/Kconfig @@ -113,7 +113,7 @@ config CLKSRC_LPC32XX config CLKSRC_STM32 bool "Clocksource for STM32 SoCs" if COMPILE_TEST - depends on OF + depends on OF && GENERIC_CLOCKEVENTS select CLKSRC_MMIO config ARM_ARCH_TIMER -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/