From patchwork Tue Mar 17 05:53:26 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nobuhiro Iwamatsu X-Patchwork-Id: 12557 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n2H5rTek021647 for ; Tue, 17 Mar 2009 05:53:29 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752491AbZCQFxa (ORCPT ); Tue, 17 Mar 2009 01:53:30 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752723AbZCQFx3 (ORCPT ); Tue, 17 Mar 2009 01:53:29 -0400 Received: from mail.renesas.com ([202.234.163.13]:60322 "EHLO mail02.idc.renesas.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1752491AbZCQFx3 (ORCPT ); Tue, 17 Mar 2009 01:53:29 -0400 X-AuditID: ac140385-00000005000002de-2b-49bf3ad6552d Received: from guardian01.idc.renesas.com ([172.20.8.200]) by mail02.idc.renesas.com (sendmail) with ESMTP id n2H5rPCk006439; Tue, 17 Mar 2009 14:53:25 +0900 (JST) Received: (from root@localhost) by guardian01.idc.renesas.com with id n2H5rQbg013162; Tue, 17 Mar 2009 14:53:26 +0900 (JST) Received: from mta04.idc.renesas.com (localhost [127.0.0.1]) by mta04.idc.renesas.com with ESMTP id n2H5rOaQ013664; Tue, 17 Mar 2009 14:53:24 +0900 (JST) Received: from [172.30.8.158] by ims05.idc.renesas.com (Sendmail) with ESMTPA id <0KGM00IOQZ123W@ims05.idc.renesas.com>; Tue, 17 Mar 2009 14:53:26 +0900 (JST) Date: Tue, 17 Mar 2009 14:53:26 +0900 From: Nobuhiro Iwamatsu Subject: [PATCH] sh: sh7763rdp: Change IRQ number for sh_eth of sh7763rdp To: Linux-sh Cc: Paul Mundt Message-id: <49BF3AD6.8090806@renesas.com> MIME-version: 1.0 Content-type: text/plain; charset=ISO-2022-JP Content-transfer-encoding: 7bit User-Agent: Thunderbird 1.5.0.14 (Windows/20071210) X-Brightmail-Tracker: AAAAAA== Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org IRQ for sh_eth of sh7763rdp became multi handling. Therefore, the IRQ number of sh_eth is changed, too. Signed-off-by: Nobuhiro Iwamatsu --- arch/sh/boards/mach-sh7763rdp/setup.c | 10 +++++++--- 1 files changed, 7 insertions(+), 3 deletions(-) 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, }, };