Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751308AbdFAHRy (ORCPT ); Thu, 1 Jun 2017 03:17:54 -0400 Received: from smtp.codeaurora.org ([198.145.29.96]:35564 "EHLO smtp.codeaurora.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751001AbdFAHRx (ORCPT ); Thu, 1 Jun 2017 03:17:53 -0400 DMARC-Filter: OpenDMARC Filter v1.3.2 smtp.codeaurora.org D9F6A60732 Authentication-Results: pdx-caf-mail.web.codeaurora.org; dmarc=none (p=none dis=none) header.from=codeaurora.org Authentication-Results: pdx-caf-mail.web.codeaurora.org; spf=none smtp.mailfrom=sboyd@codeaurora.org Date: Thu, 1 Jun 2017 00:17:50 -0700 From: Stephen Boyd To: Arnd Bergmann Cc: Chen-Yu Tsai , Michael Turquette , Linux Kernel Mailing List , Tobias Regnery , Maxime Ripard , linux-clk@vger.kernel.org, Linux ARM , Icenowy Zheng Subject: Re: [PATCH] clk: sunxi-ng: select SUNXI_CCU_MULT for sun8i-a83t Message-ID: <20170601071750.GP20170@codeaurora.org> References: <20170522202951.2896280-1-arnd@arndb.de> <20170523005553.GH20170@codeaurora.org> <20170523071940.xbnahikb4d5dge7v@wens.csie.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2748 Lines: 62 On 05/23, Arnd Bergmann wrote: > On Tue, May 23, 2017 at 9:19 AM, Chen-Yu Tsai wrote: > > On Mon, May 22, 2017 at 05:55:53PM -0700, Stephen Boyd wrote: > >> On 05/22, Arnd Bergmann wrote: > >> > We get a link error when CCU_MULT is not set with the > >> > newly added driver: > >> > > >> > drivers/clk/sunxi-ng/ccu-sun8i-a83t.o:(.data.__compound_literal.1+0x4): undefined reference to `ccu_mult_ops' > >> > drivers/clk/sunxi-ng/ccu-sun8i-a83t.o:(.data.__compound_literal.3+0x4): undefined reference to `ccu_mult_ops' > >> > > >> > Fixes: 46b492116666 ("clk: sunxi-ng: Add driver for A83T CCU") > >> > Signed-off-by: Arnd Bergmann > > > > Acked-by: Chen-Yu Tsai > > > >> Is there any way we can automate finding these build errors and > >> prevent them from creeping into the tree? It may be asking too > >> much, but it seems like we should be able to find these > >> particular problems with some script that greps for ccu_*_ops and > >> checks that any file's Kconfig symbol also has that selected. > >> > >> Anyway, I'm just tired of seeing these sorts of things in my > >> inbox. > > Definitely, I'm also tired of writing the patches ;-) > > > The (ugly) script below does the trick, though it does give results > > for some symbols that are indirectly selected: > > > > SUN5I_CCU uses SUNXI_CCU_GATE but does not select it > > SUN5I_CCU uses SUNXI_CCU_MUX but does not select it > > I think they are all caught implicitly, otherwise I would have run > into them. > > > SUN5I_CCU uses SUNXI_CCU_NKMP but does not select it > > I sent a patch for this on Feb 14 and again March 13, but haven't > gotten around to resubmit again. > > An alternative would be to remove all the dependencies as 'lib-y' > in the Makefile and remove the individual Kconfig symbols. That > way, we would always build all of them when CONFIG_SUNXI_CCU > is enabled, but the linker would drop the ones that do not get > referenced. In this case you're right, and we should change them to lib-y in the Makefile and then let the linker figure this all out. No more dependency patches. I think we only need to do this sort of Kconfig stuff when we want to make a library .ko file that each SoC specific driver depends on for common code. It would be cool if the build system could figure that all out for us, and let us have something like modlib-y that makes it a library (archive) if all objects depending on it are builtin and we have CONFIG_MODULES=n, or makes it into an object file if something is builtin that depends on it, or makes it into a module if everything that depends on it is a module. -- Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, a Linux Foundation Collaborative Project