From patchwork Thu Mar 25 22:51:06 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Guzman Lugo, Fernando" X-Patchwork-Id: 88388 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 o2PMpEBK030624 for ; Thu, 25 Mar 2010 22:51:14 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752606Ab0CYWvN (ORCPT ); Thu, 25 Mar 2010 18:51:13 -0400 Received: from devils.ext.ti.com ([198.47.26.153]:54024 "EHLO devils.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752026Ab0CYWvM convert rfc822-to-8bit (ORCPT ); Thu, 25 Mar 2010 18:51:12 -0400 Received: from dlep35.itg.ti.com ([157.170.170.118]) by devils.ext.ti.com (8.13.7/8.13.7) with ESMTP id o2PMp704028552 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 25 Mar 2010 17:51:08 -0500 Received: from dlep26.itg.ti.com (localhost [127.0.0.1]) by dlep35.itg.ti.com (8.13.7/8.13.7) with ESMTP id o2PMp7Tj011693; Thu, 25 Mar 2010 17:51:07 -0500 (CDT) Received: from dlee74.ent.ti.com (localhost [127.0.0.1]) by dlep26.itg.ti.com (8.13.8/8.13.8) with ESMTP id o2PMp7S8006996; Thu, 25 Mar 2010 17:51:07 -0500 (CDT) Received: from dlee06.ent.ti.com ([157.170.170.11]) by dlee74.ent.ti.com ([157.170.170.8]) with mapi; Thu, 25 Mar 2010 17:51:07 -0500 From: "Guzman Lugo, Fernando" To: "linux-omap@vger.kernel.org" CC: "Doyu Hiroshi (Nokia-D/Helsinki)" , "Palande Ameya (Nokia-D/Helsinki)" , Felipe Contreras Date: Thu, 25 Mar 2010 17:51:06 -0500 Subject: PATCH] OMAP3: add mailbox initialization for 3630 Thread-Topic: PATCH] OMAP3: add mailbox initialization for 3630 Thread-Index: AcrMbad53GaJTdOLQjW8jC3xrlqIFA== Message-ID: <496565EC904933469F292DDA3F1663E602CADC33F9@dlee06.ent.ti.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US MIME-Version: 1.0 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]); Thu, 25 Mar 2010 22:51:14 +0000 (UTC) diff --git a/arch/arm/mach-omap2/devices.c b/arch/arm/mach-omap2/devices.c index 18ad931..f9d177b 100644 --- a/arch/arm/mach-omap2/devices.c +++ b/arch/arm/mach-omap2/devices.c @@ -196,7 +196,8 @@ static struct platform_device mbox_device = { static inline void omap_init_mbox(void) { - if (cpu_is_omap2420() || cpu_is_omap3430() || cpu_is_omap44xx()) { + if (cpu_is_omap2420() || cpu_is_omap3430() || + cpu_is_omap3630() || cpu_is_omap44xx()) { mbox_device.num_resources = ARRAY_SIZE(omap_mbox_resources); mbox_device.resource = omap_mbox_resources; } else {