From patchwork Sat May 22 17:14:20 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Felipe Contreras X-Patchwork-Id: 101655 X-Patchwork-Delegate: hiroshi.doyu@nokia.com Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.3/8.14.3) with ESMTP id o4MHFCnL017302 for ; Sat, 22 May 2010 17:15:13 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755915Ab0EVRO5 (ORCPT ); Sat, 22 May 2010 13:14:57 -0400 Received: from mail-bw0-f46.google.com ([209.85.214.46]:55289 "EHLO mail-bw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755873Ab0EVROw (ORCPT ); Sat, 22 May 2010 13:14:52 -0400 Received: by mail-bw0-f46.google.com with SMTP id 7so383709bwz.19 for ; Sat, 22 May 2010 10:14:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:date :message-id:x-mailer:in-reply-to:references; bh=v9eJxS9ecugRBSIjSv8jwcifvTz43ZLdfkFtP9vRKyY=; b=h3cLn2j/eRPelXIgvTmJsgz7PxeeM86j2zh5oJNphQdOY68WHv9Zgx2hteQYF+2jZH +tO4OlNNvix9ViAifvDAn4OpKEW3W80u2DN3ACN10MuAIsu2qbucja4m+66Wmng1hw9O XVx+w0SO+ue8bNEny5rCVyqtHFaVUvwLzP0lw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; b=DSW6YLue0xzxjQOl62f2NOKY7mISrliG+lmuMdv7pbdFl+keR6tk7nJc+FEH4xHj9N alULXqo4npmmaNtvhVAt+gH2pygNYIf0jcDvIBLZ8pVzJ3+WdNY9KyaOx0kN5wIZxc60 6I1A5jBFg3AwuL9eTkrDEa1hhJzjbE+evmHKQ= Received: by 10.204.131.198 with SMTP id y6mr1077285bks.4.1274548491923; Sat, 22 May 2010 10:14:51 -0700 (PDT) Received: from localhost (a91-153-253-80.elisa-laajakaista.fi [91.153.253.80]) by mx.google.com with ESMTPS id d13sm10198267bkd.5.2010.05.22.10.14.51 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sat, 22 May 2010 10:14:51 -0700 (PDT) From: Felipe Contreras To: linux-omap Cc: linux-arm , Hiroshi Doyu , Tony Lindgren , Felipe Contreras Subject: [PATCH v3 09/14] omap: mailbox: add IRQ names Date: Sat, 22 May 2010 20:14:20 +0300 Message-Id: <1274548465-20208-10-git-send-email-felipe.contreras@gmail.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1274548465-20208-1-git-send-email-felipe.contreras@gmail.com> References: <1274548465-20208-1-git-send-email-felipe.contreras@gmail.com> Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter.kernel.org [140.211.167.41]); Sat, 22 May 2010 17:15:14 +0000 (UTC) diff --git a/arch/arm/mach-omap1/devices.c b/arch/arm/mach-omap1/devices.c index da796f2..314fea3 100644 --- a/arch/arm/mach-omap1/devices.c +++ b/arch/arm/mach-omap1/devices.c @@ -82,6 +82,7 @@ static struct resource mbox_resources[] = { { .start = INT_DSP_MAILBOX1, .flags = IORESOURCE_IRQ, + .name = "dsp", }, }; diff --git a/arch/arm/mach-omap2/devices.c b/arch/arm/mach-omap2/devices.c index 2271b9b..b621476 100644 --- a/arch/arm/mach-omap2/devices.c +++ b/arch/arm/mach-omap2/devices.c @@ -150,10 +150,12 @@ static struct resource omap2_mbox_resources[] = { { .start = INT_24XX_MAIL_U0_MPU, .flags = IORESOURCE_IRQ, + .name = "dsp", }, { .start = INT_24XX_MAIL_U3_MPU, .flags = IORESOURCE_IRQ, + .name = "iva", }, }; static int omap2_mbox_resources_sz = ARRAY_SIZE(omap2_mbox_resources); @@ -172,6 +174,7 @@ static struct resource omap3_mbox_resources[] = { { .start = INT_24XX_MAIL_U0_MPU, .flags = IORESOURCE_IRQ, + .name = "dsp", }, }; static int omap3_mbox_resources_sz = ARRAY_SIZE(omap3_mbox_resources); @@ -193,6 +196,7 @@ static struct resource omap4_mbox_resources[] = { { .start = OMAP44XX_IRQ_MAIL_U0, .flags = IORESOURCE_IRQ, + .name = "mbox", }, }; static int omap4_mbox_resources_sz = ARRAY_SIZE(omap4_mbox_resources);