From patchwork Wed May 2 09:41:42 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bastian Hecht X-Patchwork-Id: 156401 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:4978:20e::2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 0E4D9B6FB7 for ; Wed, 2 May 2012 19:44:20 +1000 (EST) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1SPW5A-00087V-33; Wed, 02 May 2012 09:42:48 +0000 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) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; bh=suuSC1mnRCdyOxc0AnH+zaOOXrO6MAF8cdlJmrHLpQ8=; b=L0Dhdjn48TEv2/ojtrOU5GHq/SKDhfXYh6r63wg+w4JgPIHi2AEZm+91sEd3w+3jfw kDljrHio+Z7tEj13rEe78uVi7JE/yWpv7m+pKjpNUbLS3eGnbbJ6De7VOilmDf37+h3b jZ1JELqr1zWOUmsi1WnWCNOoMVzH8FFCpakPwW+fFrwK5J7IecVItx27Foq0zwW2PMUy BktmjoGwqqx95b2bDQE7Q7S4/0q14s+yNrHYrs4UbM40X5ffAhtfBF0ZbAmw9y6MwMC4 +imZN/584IZWczIrPXfii/xLhF6tJO/Wfvnvdk+fLTEfo70qs8yHKMsnbJozufHCGqB/ iQHQ== Received: by 10.205.126.14 with SMTP id gu14mr5073231bkc.57.1335951752526; Wed, 02 May 2012 02:42:32 -0700 (PDT) Received: from localhost.localdomain ([176.74.57.22]) by mx.google.com with ESMTPS id e20sm2362194bkv.10.2012.05.02.02.42.31 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 02 May 2012 02:42:31 -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> X-Mailer: git-send-email 1.7.5.4 In-Reply-To: <1335951710-9390-1-git-send-email-hechtb@gmail.com> References: <1335951710-9390-1-git-send-email-hechtb@gmail.com> X-Spam-Note: CRM114 invocation failed X-Spam-Score: -2.7 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.7 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [209.85.214.49 listed in list.dnswl.org] 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (hechtb[at]googlemail.com) -0.0 SPF_PASS SPF: sender matches SPF record -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature Cc: Brian Norris , Magnus Damm , Laurent Pichart , Artem Bityutskiy X-BeenThere: linux-mtd@lists.infradead.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linux-mtd-bounces@lists.infradead.org Errors-To: linux-mtd-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org 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 = {