From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-bk0-f49.google.com ([209.85.214.49]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1SPW4v-00084T-Rm for linux-mtd@lists.infradead.org; Wed, 02 May 2012 09:42:34 +0000 Received: by bkwj4 with SMTP id j4so343239bkw.36 for ; Wed, 02 May 2012 02:42:32 -0700 (PDT) From: Bastian Hecht To: linux-mtd@lists.infradead.org, linux-sh@vger.kernel.org Subject: [PATCH v3 02/10] ARM: sh-mobile: mackerel: Add error IRQ resource Date: Wed, 2 May 2012 11:41:42 +0200 Message-Id: <1335951710-9390-3-git-send-email-hechtb@gmail.com> In-Reply-To: <1335951710-9390-1-git-send-email-hechtb@gmail.com> References: <1335951710-9390-1-git-send-email-hechtb@gmail.com> Cc: Brian Norris , Magnus Damm , Laurent Pichart , Artem Bityutskiy List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Supply the platform data for the FLSTEI error IRQ. Signed-off-by: Bastian Hecht --- arch/arm/mach-shmobile/board-mackerel.c | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/arch/arm/mach-shmobile/board-mackerel.c b/arch/arm/mach-shmobile/board-mackerel.c index 8758f94..1de1fb7 100644 --- a/arch/arm/mach-shmobile/board-mackerel.c +++ b/arch/arm/mach-shmobile/board-mackerel.c @@ -990,7 +990,11 @@ static struct resource nand_flash_resources[] = { .start = 0xe6a30000, .end = 0xe6a3009b, .flags = IORESOURCE_MEM, - } + }, + [1] = { + .start = evt2irq(0x0d80), /* flstei: status error irq */ + .flags = IORESOURCE_IRQ, + }, }; static struct sh_flctl_platform_data nand_flash_data = { -- 1.7.5.4