From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tony Lindgren Subject: Re: [PATCH 10/11] arm/dts: OMAP4: Add a main ocp entry bound to l3-noc driver Date: Fri, 23 Sep 2011 15:58:26 -0700 Message-ID: <20110923225825.GB6324@atomide.com> References: <1316809399-19579-1-git-send-email-b-cousson@ti.com> <1316809399-19579-11-git-send-email-b-cousson@ti.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline In-Reply-To: <1316809399-19579-11-git-send-email-b-cousson@ti.com> Sender: linux-omap-owner@vger.kernel.org To: Benoit Cousson Cc: grant.likely@secretlab.ca, paul@pwsan.com, khilman@ti.com, rnayak@ti.com, linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org, devicetree-discuss@lists.ozlabs.org, Santosh Shilimkar List-Id: devicetree@vger.kernel.org * Benoit Cousson [110923 12:50]: > Used the main OCP node to add bindings with the l3_noc driver. > Remove l3_noc static device creation if DT is populated. > --- a/arch/arm/mach-omap2/devices.c > +++ b/arch/arm/mach-omap2/devices.c > @@ -16,6 +16,7 @@ > #include > #include > #include > +#include > > #include > #include > @@ -77,6 +78,10 @@ static int __init omap4_l3_init(void) > struct platform_device *pdev; > char oh_name[L3_MODULES_MAX_LEN]; > > + /* If dtb is there, the devices will be created dynamically */ > + if (of_have_populated_dt()) > + return -ENODEV; > + > /* > * To avoid code running on other OMAPs in > * multi-omap builds How about just remove omap3_l3_init and omap4_l3_init completely instead? There should not be any need for the platform glue code if the driver, it's OK for us to require that either DT is passed from the bootloader or as appended DT as soon as the appended DT patches are merged. Regards, Tony