From patchwork Fri Aug 21 18:11:06 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: vikram pandita X-Patchwork-Id: 43176 X-Patchwork-Delegate: tony@atomide.com Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n7LIBal3015377 for ; Fri, 21 Aug 2009 18:11:36 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754405AbZHUSLc (ORCPT ); Fri, 21 Aug 2009 14:11:32 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755488AbZHUSLc (ORCPT ); Fri, 21 Aug 2009 14:11:32 -0400 Received: from bear.ext.ti.com ([192.94.94.41]:43963 "EHLO bear.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754405AbZHUSLb (ORCPT ); Fri, 21 Aug 2009 14:11:31 -0400 Received: from dlep35.itg.ti.com ([157.170.170.118]) by bear.ext.ti.com (8.13.7/8.13.7) with ESMTP id n7LIBPYj027756; Fri, 21 Aug 2009 13:11:30 -0500 Received: from legion.dal.design.ti.com (localhost [127.0.0.1]) by dlep35.itg.ti.com (8.13.7/8.13.7) with ESMTP id n7LIBMlu002985; Fri, 21 Aug 2009 13:11:22 -0500 (CDT) Received: from vip-tid (lta0307903-128247075087.am.dhcp.ti.com [128.247.75.87]) by legion.dal.design.ti.com (8.11.7p1+Sun/8.11.7) with ESMTP id n7LIBMZ08209; Fri, 21 Aug 2009 13:11:22 -0500 (CDT) Received: from vip-tid (localhost.localdomain [127.0.0.1]) by vip-tid (Postfix) with ESMTP id 24C3429CCF2; Fri, 21 Aug 2009 13:11:08 -0500 (CDT) Received: (from vikram@localhost) by vip-tid (8.14.3/8.14.3/Submit) id n7LIB8tf010664; Fri, 21 Aug 2009 13:11:08 -0500 X-Authentication-Warning: vip-tid: vikram set sender to vikram.pandita@ti.com using -f From: Vikram Pandita To: linux-omap@vger.kernel.org, linux-arm-kernel@lists.arm.linux.org.uk Cc: Vikram Pandita , Kevin Hilman Subject: [PATCH 4/5] OMAP: Zoom2: Fix serial break Date: Fri, 21 Aug 2009 13:11:06 -0500 Message-Id: <1250878266-10632-1-git-send-email-vikram.pandita@ti.com> X-Mailer: git-send-email 1.6.3.3.334.g916e1 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org Fix the break in Zoom2 Quad uart debug port support. Patch by Kevin Hilman fd455ea899b5a14 caused a break as it introuduced per port PLATFORM id and Zoom2 was not tested with this change. For Zoom2 serial port, add platform id as 4 Signed-off-by: Vikram Pandita cc: Kevin Hilman --- arch/arm/mach-omap2/board-zoom-debugboard.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/mach-omap2/board-zoom-debugboard.c b/arch/arm/mach-omap2/board-zoom-debugboard.c index f8b0726..4dd714d 100644 --- a/arch/arm/mach-omap2/board-zoom-debugboard.c +++ b/arch/arm/mach-omap2/board-zoom-debugboard.c @@ -97,7 +97,7 @@ static struct plat_serial8250_port serial_platform_data[] = { static struct platform_device zoom2_debugboard_serial_device = { .name = "serial8250", - .id = PLAT8250_DEV_PLATFORM1, + .id = PLAT8250_DEV_FOURPORT, .dev = { .platform_data = serial_platform_data, },