Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754184AbcDGB0v (ORCPT ); Wed, 6 Apr 2016 21:26:51 -0400 Received: from mail-pa0-f54.google.com ([209.85.220.54]:32827 "EHLO mail-pa0-f54.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751318AbcDGB0t (ORCPT ); Wed, 6 Apr 2016 21:26:49 -0400 Date: Wed, 6 Apr 2016 18:26:39 -0700 From: Brian Norris To: Paul Gortmaker Cc: linux-kernel@vger.kernel.org, Olof Johansson , Will Deacon , Arnd Bergmann , Gregory Fong , Florian Fainelli , linux-arm-kernel@lists.infradead.org Subject: Re: [PATCH 1/4] drivers/bus: make brcmstb_gisb.c driver explicitly non-modular Message-ID: <20160407012639.GA30748@localhost> References: <1459113058-14340-1-git-send-email-paul.gortmaker@windriver.com> <1459113058-14340-2-git-send-email-paul.gortmaker@windriver.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1459113058-14340-2-git-send-email-paul.gortmaker@windriver.com> 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: 1838 Lines: 56 On Sun, Mar 27, 2016 at 05:10:55PM -0400, Paul Gortmaker wrote: > The Kconfig for this driver is currently: > > config BRCMSTB_GISB_ARB > bool "Broadcom STB GISB bus arbiter" > > ...meaning that it currently is not being built as a module by anyone. > Lets remove all modular references, so that when reading the driver > there is no doubt it is builtin-only. > > Since module_init translates to device_initcall in the non-modular > case, the init ordering remains unchanged with this commit. > > Cc: Brian Norris > Cc: Gregory Fong > Cc: Florian Fainelli > Cc: linux-arm-kernel@lists.infradead.org > Signed-off-by: Paul Gortmaker I think this driver probably doesn't make too much sense as a module anyway (among other things, we can't hook the ARM fault handler beyond init time, as it's marked __init). So: Acked-by: Brian Norris Might be good to get Florian's ack though, as I'm not using this platform any more. Brian > --- > drivers/bus/brcmstb_gisb.c | 4 +--- > 1 file changed, 1 insertion(+), 3 deletions(-) > > diff --git a/drivers/bus/brcmstb_gisb.c b/drivers/bus/brcmstb_gisb.c > index f364fa4d24eb..319104b22ca4 100644 > --- a/drivers/bus/brcmstb_gisb.c > +++ b/drivers/bus/brcmstb_gisb.c > @@ -13,7 +13,6 @@ > > #include > #include > -#include > #include > #include > #include > @@ -408,5 +407,4 @@ static int __init brcm_gisb_driver_init(void) > return platform_driver_probe(&brcmstb_gisb_arb_driver, > brcmstb_gisb_arb_probe); > } > - > -module_init(brcm_gisb_driver_init); > +device_initcall(brcm_gisb_driver_init); > -- > 2.6.1 >