From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753416AbbHVJkx (ORCPT ); Sat, 22 Aug 2015 05:40:53 -0400 Received: from bh-25.webhostbox.net ([208.91.199.152]:50218 "EHLO bh-25.webhostbox.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753320AbbHVJkw (ORCPT ); Sat, 22 Aug 2015 05:40:52 -0400 From: Guenter Roeck To: Ralf Baechle Cc: linux-mips@linux-mips.org, linux-kernel@vger.kernel.org, Guenter Roeck , Ezequiel Garcia , Daniel Lezcano Subject: [PATCH -next] mips: Enable common clock framework for malta and sead3 Date: Sat, 22 Aug 2015 02:40:41 -0700 Message-Id: <1440236441-10815-1-git-send-email-linux@roeck-us.net> X-Mailer: git-send-email 2.1.4 X-Authenticated_sender: guenter@roeck-us.net X-OutGoing-Spam-Status: No, score=-1.0 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - bh-25.webhostbox.net X-AntiAbuse: Original Domain - vger.kernel.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - roeck-us.net X-Get-Message-Sender-Via: bh-25.webhostbox.net: authenticated_id: guenter@roeck-us.net X-Source: X-Source-Args: X-Source-Dir: Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Since commit e69b3d70ac57 ("CLOCKSOURCE: mips-gic: Update clockevent frequency on clock rate changes"), malta_defconfig and sead3_defconfig fail to build as follows. drivers/clocksource/mips-gic-timer.c: In function 'gic_clk_notifier': drivers/clocksource/mips-gic-timer.c:102:16: error: 'POST_RATE_CHANGE' undeclared drivers/clocksource/mips-gic-timer.c:103:48: error: dereferencing pointer to incomplete type drivers/clocksource/mips-gic-timer.c: In function 'gic_clocksource_of_init': drivers/clocksource/mips-gic-timer.c:209:3: error: implicit declaration of function 'clk_notifier_register' Fix by enabling COMMON_CLK for both configurations. Build tested for malta_defconfig and sead3_defconfig. Tested with qemu malta emulation. Fixes: e69b3d70ac57 ("CLOCKSOURCE: mips-gic: Update clockevent frequency on clock rate changes") Cc: Ezequiel Garcia Cc: Daniel Lezcano Signed-off-by: Guenter Roeck --- arch/mips/Kconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index 09b8fe95aeb0..7af84b4d3269 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig @@ -409,6 +409,7 @@ config MIPS_MALTA select CEVT_R4K select CSRC_R4K select CLKSRC_MIPS_GIC + select COMMON_CLK select DMA_MAYBE_COHERENT select GENERIC_ISA_DMA select HAVE_PCSPKR_PLATFORM @@ -459,6 +460,7 @@ config MIPS_SEAD3 select CEVT_R4K select CSRC_R4K select CLKSRC_MIPS_GIC + select COMMON_CLK select CPU_MIPSR2_IRQ_VI select CPU_MIPSR2_IRQ_EI select DMA_NONCOHERENT -- 2.1.4