From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.lixom.net (lixom.net [66.141.50.11]) by ozlabs.org (Postfix) with ESMTP id 5026FDDED3 for ; Wed, 5 Dec 2007 06:12:55 +1100 (EST) Date: Tue, 4 Dec 2007 13:16:57 -0600 From: Olof Johansson To: Anton Vorontsov Subject: Re: [PATCH v2 3/4] [POWERPC] MPC8349E-mITX: introduce localbus and pata nodes Message-ID: <20071204191657.GB5758@lixom.net> References: <20071204170442.GA10460@localhost.localdomain> <20071204170726.GC15599@localhost.localdomain> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <20071204170726.GC15599@localhost.localdomain> Cc: linuxppc-dev@ozlabs.org, Paul Mundt , Arnd Bergmann , Jeff Garzik , linux-ide@vger.kernel.org List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Hi, On Tue, Dec 04, 2007 at 08:07:26PM +0300, Anton Vorontsov wrote: > diff --git a/arch/powerpc/boot/dts/mpc8349emitx.dts b/arch/powerpc/boot/dts/mpc8349emitx.dts > index 5072f6d..c459b0a 100644 > --- a/arch/powerpc/boot/dts/mpc8349emitx.dts > +++ b/arch/powerpc/boot/dts/mpc8349emitx.dts > @@ -249,6 +249,22 @@ > device_type = "pci"; > }; > > + localbus@e0005000 { > + #address-cells = <2>; > + #size-cells = <1>; > + compatible = "fsl,mpc8349emitx-localbus", > + "fsl,mpc8349e-localbus", > + "fsl,pq2pro-localbus"; > + reg = ; > + ranges = <3 0 f0000000 210>; > > - > + pata@3,0 { What's the ,0 for? > + compatible = "fsl,mpc8349emitx-pata", "ata-generic"; > + reg = <3 0 10 3 20c 4>; > + reg-shift = <1>; > + pio-mode = <6>; > + interrupts = <17 8>; > + interrupt-parent = <&ipic>; > + }; > + }; > }; > diff --git a/arch/powerpc/platforms/83xx/mpc834x_itx.c b/arch/powerpc/platforms/83xx/mpc834x_itx.c > index aa76819..ea5f176 100644 > --- a/arch/powerpc/platforms/83xx/mpc834x_itx.c > +++ b/arch/powerpc/platforms/83xx/mpc834x_itx.c > @@ -23,6 +23,7 @@ > #include > #include > #include > +#include > > #include > #include > @@ -37,6 +38,22 @@ > > #include "mpc83xx.h" > > +static struct of_device_id mpc834x_itx_ids[] = { > + { .name = "localbus", }, > + {}, > +}; Please add the "compatible" field here (fsl,pq2pro-localbus should do just fine), instead of the name. (Sorry for not spotting this sooner) -Olof