diff mbox

sh: sh7763rdp: Change IRQ number for sh_eth of sh7763rdp

Message ID 49BF3AD6.8090806@renesas.com (mailing list archive)
State Accepted
Headers show

Commit Message

Nobuhiro Iwamatsu March 17, 2009, 5:53 a.m. UTC
IRQ for sh_eth of sh7763rdp became multi handling.
Therefore, the IRQ number of sh_eth is changed, too.

Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
---
 arch/sh/boards/mach-sh7763rdp/setup.c |   10 +++++++---
 1 files changed, 7 insertions(+), 3 deletions(-)

Comments

Paul Mundt March 17, 2009, 6:19 a.m. UTC | #1
On Tue, Mar 17, 2009 at 02:53:26PM +0900, Nobuhiro Iwamatsu wrote:
> IRQ for sh_eth of sh7763rdp became multi handling.
> Therefore, the IRQ number of sh_eth is changed, too.
> 
> Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>

On Tue, Mar 17, 2009 at 02:54:37PM +0900, Nobuhiro Iwamatsu wrote:
> Espt-giga is the board which used SH7763.
> This supports serial, Gigabit ether, USB host and MTD.
> 
> Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>

I've rolled the defconfig patch in with the board patch and checked these
in, thanks.
--
To unsubscribe from this list: send the line "unsubscribe linux-sh" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Nobuhiro Iwamatsu March 17, 2009, 7:40 a.m. UTC | #2
Paul Mundt wrote:
> On Tue, Mar 17, 2009 at 02:53:26PM +0900, Nobuhiro Iwamatsu wrote:
>> IRQ for sh_eth of sh7763rdp became multi handling.
>> Therefore, the IRQ number of sh_eth is changed, too.
>>
>> Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
> 
> On Tue, Mar 17, 2009 at 02:54:37PM +0900, Nobuhiro Iwamatsu wrote:
>> Espt-giga is the board which used SH7763.
>> This supports serial, Gigabit ether, USB host and MTD.
>>
>> Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
> 
> I've rolled the defconfig patch in with the board patch and checked these
> in, thanks.
> 

OK, thank you a lot.

Best regards,
  Nobuhiro
--
To unsubscribe from this list: send the line "unsubscribe linux-sh" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/arch/sh/boards/mach-sh7763rdp/setup.c b/arch/sh/boards/mach-sh7763rdp/setup.c
index 6f926fd..27d1c9e 100644
--- a/arch/sh/boards/mach-sh7763rdp/setup.c
+++ b/arch/sh/boards/mach-sh7763rdp/setup.c
@@ -63,15 +63,19 @@  static struct platform_device sh7763rdp_nor_flash_device = {
 	},
 };

-/* SH-Ether */
+/*
+ * SH-Ether
+ *
+ * SH Ether of SH7763 has multi IRQ handling.
+ * (57,58,59 -> 57)
+ */
 static struct resource sh_eth_resources[] = {
 	{
 		.start  = 0xFEE00800,   /* use eth1 */
 		.end    = 0xFEE00F7C - 1,
 		.flags  = IORESOURCE_MEM,
 	}, {
-		.start  = 58,   /* irq number */
-		.end    = 58,
+		.start  = 57,   /* irq number */
 		.flags  = IORESOURCE_IRQ,
 	},
 };