From patchwork Wed Jun 30 14:43:04 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Govindraj R X-Patchwork-Id: 108848 X-Patchwork-Delegate: khilman@deeprootsystems.com Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.4/8.14.3) with ESMTP id o5UEhHn9007036 for ; Wed, 30 Jun 2010 14:43:18 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756411Ab0F3OnH (ORCPT ); Wed, 30 Jun 2010 10:43:07 -0400 Received: from mail-gy0-f174.google.com ([209.85.160.174]:60633 "EHLO mail-gy0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754712Ab0F3OnG convert rfc822-to-8bit (ORCPT ); Wed, 30 Jun 2010 10:43:06 -0400 Received: by gyd12 with SMTP id 12so429616gyd.19 for ; Wed, 30 Jun 2010 07:43:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=10i66Xl2NJ2P9sm0UJaeM+izaCbwYIsViK8zogSsPag=; b=EKdICt/2rqtwaJuSDeNSKWkDtlWDl81XJuW64Wa4PSS8tS3rQtbESRHTZX7eL4QA5n k7N8YsaNLWFAt4DB3jOquWmGYbkjWs+L9jcwzfzgbhLSHcJWAKsv98ecIuazQzbFaqIR d9rGLYjYv/apjEr+PEctB6ZMQXTBNY0B9EFgc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=A298cCCLEw6gJW0FNKfx36uzY4VDioK8pclOxffeKUP7I5iaHnkomZs3PqhEqPfB5H WXVWSrKBGnw00Dp+cs+U0RDHp3jOQhVR99qBvHd7flwWh+rDq4CfHZ+1fnRYCIzHoppW fXFpSoeoy5NJikZITz1G8W/u9WMzpkrSfhijU= MIME-Version: 1.0 Received: by 10.224.40.80 with SMTP id j16mr6268684qae.41.1277908984616; Wed, 30 Jun 2010 07:43:04 -0700 (PDT) Received: by 10.229.97.194 with HTTP; Wed, 30 Jun 2010 07:43:04 -0700 (PDT) In-Reply-To: <871vbvt72x.fsf@deeprootsystems.com> References: <61551.192.168.10.88.1277384156.squirrel@dbdmail.itg.ti.com> <87zkykxdqe.fsf@deeprootsystems.com> <17901.10.24.255.17.1277473301.squirrel@dbdmail.itg.ti.com> <871vbvt72x.fsf@deeprootsystems.com> Date: Wed, 30 Jun 2010 20:13:04 +0530 Message-ID: Subject: Re: [pm-wip/uart][PATCH] Serial: Avoid populating uart_list in early init phase From: Govindraj To: Kevin Hilman Cc: "Govindraj.R" , linux-omap@vger.kernel.org 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]); Wed, 30 Jun 2010 14:43:18 +0000 (UTC) diff --git a/arch/arm/mach-omap2/board-zoom-debugboard.c b/arch/arm/mach-omap2/board-zoom-debugboard.c index 1d7f827..9307f58 100644 --- a/arch/arm/mach-omap2/board-zoom-debugboard.c +++ b/arch/arm/mach-omap2/board-zoom-debugboard.c @@ -96,7 +96,7 @@ static struct plat_serial8250_port serial_platform_data[] = { static struct platform_device zoom_debugboard_serial_device = { .name = "serial8250", - .id = PLAT8250_DEV_PLATFORM, + .id = PLAT8250_DEV_PLATFORM + 4, .dev = { .platform_data = serial_platform_data, }, diff --git a/arch/arm/mach-omap2/board-zoom2.c b/arch/arm/mach-omap2/board-zoom2.c index 803ef14..c858b43 100644 --- a/arch/arm/mach-omap2/board-zoom2.c +++ b/arch/arm/mach-omap2/board-zoom2.c @@ -80,6 +80,7 @@ static struct omap_board_mux board_mux[] __initdata = { static void __init omap_zoom2_init(void) { omap3_mux_init(board_mux, OMAP_PACKAGE_CBB); + omap_serial_init(); zoom_peripherals_init(); zoom_debugboard_init(); }