From patchwork Fri Feb 11 19:56:42 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kevin Hilman X-Patchwork-Id: 550531 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id p1BJutL6030343 for ; Fri, 11 Feb 2011 19:56:56 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758049Ab1BKT4e (ORCPT ); Fri, 11 Feb 2011 14:56:34 -0500 Received: from na3sys009aog115.obsmtp.com ([74.125.149.238]:57666 "EHLO na3sys009aog115.obsmtp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756989Ab1BKT4b (ORCPT ); Fri, 11 Feb 2011 14:56:31 -0500 Received: from source ([209.85.218.47]) (using TLSv1) by na3sys009aob115.postini.com ([74.125.148.12]) with SMTP ID DSNKTVWUbxxCSbhPBwHJABqxDan2Mz4n8dlZ@postini.com; Fri, 11 Feb 2011 11:56:31 PST Received: by mail-yi0-f47.google.com with SMTP id 16so1212620yie.6 for ; Fri, 11 Feb 2011 11:56:31 -0800 (PST) Received: by 10.150.215.10 with SMTP id n10mr1003741ybg.282.1297454190760; Fri, 11 Feb 2011 11:56:30 -0800 (PST) Received: from localhost (c-24-18-179-55.hsd1.wa.comcast.net [24.18.179.55]) by mx.google.com with ESMTPS id p32sm784540ybk.8.2011.02.11.11.56.29 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 11 Feb 2011 11:56:30 -0800 (PST) From: Kevin Hilman To: linux-omap@vger.kernel.org, Hiroshi DOYU Cc: linux-arm-kernel@lists.infradead.org Subject: [PATCH 1/2] OMAP2420: mailbox: fix IVA vs DSP IRQ numbering Date: Fri, 11 Feb 2011 11:56:42 -0800 Message-Id: <1297454203-28298-1-git-send-email-khilman@ti.com> X-Mailer: git-send-email 1.7.4 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.6 (demeter1.kernel.org [140.211.167.41]); Fri, 11 Feb 2011 19:56:56 +0000 (UTC) diff --git a/arch/arm/mach-omap2/mailbox.c b/arch/arm/mach-omap2/mailbox.c index b4cd2aa..1ccf1d6 100644 --- a/arch/arm/mach-omap2/mailbox.c +++ b/arch/arm/mach-omap2/mailbox.c @@ -334,7 +334,7 @@ static struct omap_mbox mbox_iva_info = { .priv = &omap2_mbox_iva_priv, }; -struct omap_mbox *omap2_mboxes[] = { &mbox_iva_info, &mbox_dsp_info, NULL }; +struct omap_mbox *omap2_mboxes[] = { &mbox_dsp_info, &mbox_iva_info, NULL }; #endif #if defined(CONFIG_ARCH_OMAP4)