From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mlbe2k2.cs.myharris.net (mlbe2k2.cs.myharris.net [137.237.90.89]) by ozlabs.org (Postfix) with ESMTP id 61FDADE21D for ; Wed, 31 Oct 2007 08:41:30 +1100 (EST) Message-ID: <4727A507.10309@harris.com> Date: Tue, 30 Oct 2007 17:41:27 -0400 From: "Steven A. Falco" MIME-Version: 1.0 To: linuxppc-dev@ozlabs.org Subject: Re: PPC405GP Walnut irq patch References: <47279CF0.4050600@harris.com> In-Reply-To: <47279CF0.4050600@harris.com> Content-Type: multipart/mixed; boundary="------------070109030000010107010708" List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , This is a multi-part message in MIME format. --------------070109030000010107010708 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit I realized that I should have done this from the root level. So here is the corrected patch. Signed-off-by: Steve Falco Steven A. Falco wrote: > Hi - I have found a bug in the ARCH=powerpc Walnut BSP. The order of > the ethernet interrupts in the walnut.dts file doesn't match the > documentation. I discovered this when porting the BSP to a custom > board - the ethernet would not work. The attached patch corrects that. > > This is the first patch I am submitting, so please advise me if there > is anything I should do differently. > > Signed-off-by: Steve Falco > > --------------070109030000010107010708 Content-Type: text/x-patch; name="irq.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="irq.patch" diff --git a/arch/powerpc/boot/dts/walnut.dts b/arch/powerpc/boot/dts/walnut.dts index 27bef06..dd65115 100644 --- a/arch/powerpc/boot/dts/walnut.dts +++ b/arch/powerpc/boot/dts/walnut.dts @@ -67,7 +67,7 @@ num-tx-chans = <2>; num-rx-chans = <1>; interrupt-parent = <&UIC0>; - interrupts = ; + interrupts = ; }; POB0: opb { @@ -117,7 +117,7 @@ device_type = "network"; compatible = "ibm,emac-405gp", "ibm,emac"; interrupt-parent = <&UIC0>; - interrupts = <9 4 f 4>; + interrupts = ; reg = ; mal-device = <&MAL>; mal-tx-channel = <0 1>; --------------070109030000010107010708--