From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755717AbdBNVay (ORCPT ); Tue, 14 Feb 2017 16:30:54 -0500 Received: from mout.kundenserver.de ([212.227.17.13]:49730 "EHLO mout.kundenserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754562AbdBNVaw (ORCPT ); Tue, 14 Feb 2017 16:30:52 -0500 From: Arnd Bergmann To: Michael Turquette Cc: Arnd Bergmann , Stephen Boyd , Maxime Ripard , Chen-Yu Tsai , Rob Herring , linux-clk@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: [PATCH] clk: sunxi: ccu-sun5i needs nkmp Date: Tue, 14 Feb 2017 22:29:45 +0100 Message-Id: <20170214213005.2848151-1-arnd@arndb.de> X-Mailer: git-send-email 2.9.0 X-Provags-ID: V03:K0:rd8mqz44SwkKGgk6D3n80TU7qVTovz3g+zdpMHDJmh7c8G/YBXd 5ZcGEycXWDgF9q+LLfmEYkZHK2vs+EDaToQ6zP/uat3rS4WDyc+snIedyhPfd7QwUKSRdxl Zi6NrCD/X75mqx3fHgqxYEh6Y8IAHzaFGpo8ME4cWBSWdWJzbxJKs2uOhjZUFnzjR3itogW 1hoqgLKQhVMnmItF2cQvQ== X-UI-Out-Filterresults: notjunk:1;V01:K0:PKu6+Egeu5c=:LjYIJtXnuPzFe/ueZYW5qr CZmcDPY+fJDzKtCzA7m5S0GKsfyRK1F054p1S3195z9NXr4oDuhqgboiQFtMkDXW4m5yvvdoD mOuBJrez+VOSvjO1sjWUN5sbbDNWIt8HIMyMhtLKiiDPbHHz4ynmrHPdFUBbO+LGcGHUK/2mP 506z/lskKy0Oa6RdyMCzpTNTtQS/daeSBiVlaPbBTac+8Q8oprmtdna8KONkYxYO1EuI7LGvC byhzEA1eABRLbfMv9Y17jJywv/UyQVPa0+y2nu4iHimzOX+/W+v7GyYif0fJ5QqcDciBIkb2D rYkNnYj9Uo3apXGgb/UCjP93YIAwP8lnZinNuYNs7M6RNztiL7dBiuip4raStga1nCVjz8Td2 Nia1QTfdzeubcwLYK4OuavTJL1KawBRx+DDIpgOh3eXmj17FM+ezGRxE8nMNpfsHtW9TMYIKR J/r7gfCP9nYBDbdkUSAtmSzJkW580h9bN/a7J0BBVcS86QUPwKCKp1dWMGTUeXV6Xvf0PwvnM HXTjEvTKR9pD7QqEKZMRvH9uJWVOfPQdw3cAYdg9aaoOhVGQAgqrxPIw3PBilWQ1xezYk3ZzC oQIXQ/a5snrxfelz6HQQktxkZfaT/jV/wl0ccB/pomPo+bYCN/L8/JwL6vRWG4xd/Bl8Jc9qZ pV67kX1T6d3H12hRRbtxrz9ExckCApLAdQ3yCa4KUfA2b65N+fsa4FdilrYT84wOVaaI= Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org A randconfig build ran into this rare link error: drivers/clk/sunxi-ng/ccu-sun5i.o:(.data.__compound_literal.1+0x4): undefined reference to `ccu_nkmp_ops' drivers/clk/sunxi-ng/ccu-sun5i.o:(.data.__compound_literal.7+0x4): undefined reference to `ccu_nkmp_ops' This adds the missing 'select'. Fixes: 5e73761786d6 ("clk: sunxi-ng: Add sun5i CCU driver") Signed-off-by: Arnd Bergmann --- drivers/clk/sunxi-ng/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/clk/sunxi-ng/Kconfig b/drivers/clk/sunxi-ng/Kconfig index 695bbf9ef428..b6e2aa5d0246 100644 --- a/drivers/clk/sunxi-ng/Kconfig +++ b/drivers/clk/sunxi-ng/Kconfig @@ -70,6 +70,7 @@ config SUN5I_CCU select SUNXI_CCU_MULT select SUNXI_CCU_NK select SUNXI_CCU_NKM + select SUNXI_CCU_NKMP select SUNXI_CCU_NM select SUNXI_CCU_MP select SUNXI_CCU_PHASE -- 2.9.0 From mboxrd@z Thu Jan 1 00:00:00 1970 From: arnd@arndb.de (Arnd Bergmann) Date: Tue, 14 Feb 2017 22:29:45 +0100 Subject: [PATCH] clk: sunxi: ccu-sun5i needs nkmp Message-ID: <20170214213005.2848151-1-arnd@arndb.de> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org A randconfig build ran into this rare link error: drivers/clk/sunxi-ng/ccu-sun5i.o:(.data.__compound_literal.1+0x4): undefined reference to `ccu_nkmp_ops' drivers/clk/sunxi-ng/ccu-sun5i.o:(.data.__compound_literal.7+0x4): undefined reference to `ccu_nkmp_ops' This adds the missing 'select'. Fixes: 5e73761786d6 ("clk: sunxi-ng: Add sun5i CCU driver") Signed-off-by: Arnd Bergmann --- drivers/clk/sunxi-ng/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/clk/sunxi-ng/Kconfig b/drivers/clk/sunxi-ng/Kconfig index 695bbf9ef428..b6e2aa5d0246 100644 --- a/drivers/clk/sunxi-ng/Kconfig +++ b/drivers/clk/sunxi-ng/Kconfig @@ -70,6 +70,7 @@ config SUN5I_CCU select SUNXI_CCU_MULT select SUNXI_CCU_NK select SUNXI_CCU_NKM + select SUNXI_CCU_NKMP select SUNXI_CCU_NM select SUNXI_CCU_MP select SUNXI_CCU_PHASE -- 2.9.0