Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1945991AbbEVQGf (ORCPT ); Fri, 22 May 2015 12:06:35 -0400 Received: from mga09.intel.com ([134.134.136.24]:38164 "EHLO mga09.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932198AbbEVQGe (ORCPT ); Fri, 22 May 2015 12:06:34 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.13,476,1427785200"; d="scan'208";a="575501772" Date: Fri, 22 May 2015 09:08:45 -0700 From: David Cohen To: Lu Baolu Cc: Heikki Krogerus , Greg Kroah-Hartman , linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v3 1/1] usb: ulpi: ulpi_init should be executed in subsys_initcall Message-ID: <20150522160845.GA31627@psi-dev26.jf.intel.com> References: <1432294155-18039-1-git-send-email-baolu.lu@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1432294155-18039-1-git-send-email-baolu.lu@linux.intel.com> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1407 Lines: 47 Hi, On Fri, May 22, 2015 at 07:29:15PM +0800, Lu Baolu wrote: > Phy drivers and the ulpi interface providers depend on the > registeration of the ulpi bus. Ulpi registers the bus in > module_init(). This could result in a load order issue, i.e. It's still not an issue :( I'd say "unnecessary probe delays". But of cource it's Felipe's call :) Description looks better now. BR, David > ulpi phy drivers or the ulpi interface providers loading > before the bus registeration. > > This patch fixes this load order issue by putting ulpi_init > in subsys_initcall(). > > Reported-by: Zhuo Qiuxu > Signed-off-by: Lu Baolu > --- > drivers/usb/common/ulpi.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/usb/common/ulpi.c b/drivers/usb/common/ulpi.c > index 0e6f968..01c0c04 100644 > --- a/drivers/usb/common/ulpi.c > +++ b/drivers/usb/common/ulpi.c > @@ -242,7 +242,7 @@ static int __init ulpi_init(void) > { > return bus_register(&ulpi_bus); > } > -module_init(ulpi_init); > +subsys_initcall(ulpi_init); > > static void __exit ulpi_exit(void) > { > -- > 2.1.4 > -- 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/