From patchwork Sun May 23 16:39:17 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Guennadi Liakhovetski X-Patchwork-Id: 101747 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 o4NGckUn025417 for ; Sun, 23 May 2010 16:39:01 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754168Ab0EWQjA (ORCPT ); Sun, 23 May 2010 12:39:00 -0400 Received: from mail.gmx.net ([213.165.64.20]:46983 "HELO mail.gmx.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1754117Ab0EWQjA (ORCPT ); Sun, 23 May 2010 12:39:00 -0400 Received: (qmail invoked by alias); 23 May 2010 16:38:58 -0000 Received: from p57BD181B.dip0.t-ipconnect.de (EHLO axis700.grange) [87.189.24.27] by mail.gmx.net (mp049) with SMTP; 23 May 2010 18:38:58 +0200 X-Authenticated: #20450766 X-Provags-ID: V01U2FsdGVkX18be9su6dkbf+GdfqrC4wBhD5yFxP/3lfPWNugM8N 1U9HdpZmEVy43x Received: from lyakh (helo=localhost) by axis700.grange with local-esmtp (Exim 4.63) (envelope-from ) id 1OGECr-0001CY-JE; Sun, 23 May 2010 18:39:17 +0200 Date: Sun, 23 May 2010 18:39:17 +0200 (CEST) From: Guennadi Liakhovetski To: "linux-sh@vger.kernel.org" cc: linux-serial@vger.kernel.org, Paul Mundt Subject: [PATCH 3/4] ARM: mach-shmobile: SH7372 has 6 SCIFA and 1 SCIFB ports In-Reply-To: Message-ID: References: MIME-Version: 1.0 X-Y-GMX-Trusted: 0 Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@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]); Sun, 23 May 2010 16:39:01 +0000 (UTC) diff --git a/arch/arm/mach-shmobile/setup-sh7372.c b/arch/arm/mach-shmobile/setup-sh7372.c index 0a834d3..cc040a8 100644 --- a/arch/arm/mach-shmobile/setup-sh7372.c +++ b/arch/arm/mach-shmobile/setup-sh7372.c @@ -256,7 +256,7 @@ static struct platform_device dma2_device = { static struct plat_sci_port scif0_platform_data = { .mapbase = 0xe6c40000, .flags = UPF_BOOT_AUTOCONF, - .type = PORT_SCIF, + .type = PORT_SCIFA, .irqs = { 80, 80, 80, 80 }, }; @@ -271,7 +271,7 @@ static struct platform_device scif0_device = { static struct plat_sci_port scif1_platform_data = { .mapbase = 0xe6c50000, .flags = UPF_BOOT_AUTOCONF, - .type = PORT_SCIF, + .type = PORT_SCIFA, .irqs = { 81, 81, 81, 81 }, }; @@ -286,7 +286,7 @@ static struct platform_device scif1_device = { static struct plat_sci_port scif2_platform_data = { .mapbase = 0xe6c60000, .flags = UPF_BOOT_AUTOCONF, - .type = PORT_SCIF, + .type = PORT_SCIFA, .irqs = { 82, 82, 82, 82 }, }; @@ -301,7 +301,7 @@ static struct platform_device scif2_device = { static struct plat_sci_port scif3_platform_data = { .mapbase = 0xe6c70000, .flags = UPF_BOOT_AUTOCONF, - .type = PORT_SCIF, + .type = PORT_SCIFA, .irqs = { 83, 83, 83, 83 }, }; @@ -316,7 +316,7 @@ static struct platform_device scif3_device = { static struct plat_sci_port scif4_platform_data = { .mapbase = 0xe6c80000, .flags = UPF_BOOT_AUTOCONF, - .type = PORT_SCIF, + .type = PORT_SCIFA, .irqs = { 89, 89, 89, 89 }, }; @@ -331,7 +331,7 @@ static struct platform_device scif4_device = { static struct plat_sci_port scif5_platform_data = { .mapbase = 0xe6cb0000, .flags = UPF_BOOT_AUTOCONF, - .type = PORT_SCIF, + .type = PORT_SCIFA, .irqs = { 90, 90, 90, 90 }, }; @@ -346,7 +346,7 @@ static struct platform_device scif5_device = { static struct plat_sci_port scif6_platform_data = { .mapbase = 0xe6c30000, .flags = UPF_BOOT_AUTOCONF, - .type = PORT_SCIF, + .type = PORT_SCIFB, .irqs = { 91, 91, 91, 91 }, };