From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Cousson, Benoit" Subject: Re: [PATCH v3 4/4] ARM: omap: pass minimal SoC/board data for UART from dt Date: Fri, 16 Dec 2011 16:21:43 +0100 Message-ID: <4EEB6207.9090200@ti.com> References: <1323863746-18145-1-git-send-email-rnayak@ti.com> <1323863746-18145-5-git-send-email-rnayak@ti.com> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1323863746-18145-5-git-send-email-rnayak@ti.com> Sender: linux-serial-owner@vger.kernel.org To: Rajendra Nayak Cc: linux-serial@vger.kernel.org, linux-omap@vger.kernel.org, devicetree-discuss@lists.ozlabs.org, khilman@ti.com, tony@atomide.com, govindraj.raja@ti.com, linux-arm-kernel@lists.infradead.org, linaro-dev@lists.linaro.org, patches@linaro.org, robherring2@gmail.com List-Id: devicetree@vger.kernel.org Hi Rajendra, Just one minor comment if you plan to repost. On 12/14/2011 12:55 PM, Rajendra Nayak wrote: > Pass minimal data needed for console boot, from dt, for > OMAP4 panda/sdp and OMAP3 beagle boards, and get rid of the > static initialization from generic board file. > > Acked-by: Rob Herring > Signed-off-by: Rajendra Nayak Tested-by: Benoit Cousson > arch/arm/boot/dts/omap3.dtsi | 31 +++++++++++++++++++++++++++++++ > arch/arm/boot/dts/omap4.dtsi | 28 ++++++++++++++++++++++++++++ > arch/arm/mach-omap2/board-generic.c | 1 - > 3 files changed, 59 insertions(+), 1 deletions(-) > > diff --git a/arch/arm/boot/dts/omap3.dtsi b/arch/arm/boot/dts/omap3.dtsi > index d202bb5..216c331 100644 > --- a/arch/arm/boot/dts/omap3.dtsi > +++ b/arch/arm/boot/dts/omap3.dtsi > @@ -13,6 +13,13 @@ > / { > compatible = "ti,omap3430", "ti,omap3"; > > + aliases { > + serial0 =&uart1; > + serial1 =&uart2; > + serial2 =&uart3; > + serial3 =&uart4; > + }; > + > cpus { > cpu@0 { > compatible = "arm,cortex-a8"; > @@ -59,5 +66,29 @@ > interrupt-controller; > #interrupt-cells =<1>; > }; > + > + uart1: serial@0x4806a000 { Could you get rid of the 0x prefix for consistency? This is applicable for the omap4.dtsi as well. Thanks, Benoit