From patchwork Tue Jul 6 04:31:40 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yoshihiro Shimoda X-Patchwork-Id: 110353 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 o664VjRd024453 for ; Tue, 6 Jul 2010 04:31:46 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751165Ab0GFEbq (ORCPT ); Tue, 6 Jul 2010 00:31:46 -0400 Received: from mail.renesas.com ([202.234.163.13]:40879 "EHLO mail05.idc.renesas.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751038Ab0GFEbq (ORCPT ); Tue, 6 Jul 2010 00:31:46 -0400 X-AuditID: ac140388-000000040000020f-8b-4c32b1ad362a Received: from guardian02.idc.renesas.com ([172.20.8.201]) by mail05.idc.renesas.com (sendmail) with ESMTP id o664Vf41001087; Tue, 6 Jul 2010 13:31:41 +0900 (JST) Received: (from root@localhost) by guardian02.idc.renesas.com with id o664VfHm029158; Tue, 6 Jul 2010 13:31:41 +0900 (JST) Received: from mta01.idc.renesas.com (localhost [127.0.0.1]) by mta01.idc.renesas.com with ESMTP id o664Ve1T018167; Tue, 6 Jul 2010 13:31:40 +0900 (JST) Received: from [172.30.8.157] by ims05.idc.renesas.com (Sendmail) with ESMTPA id <0L5400DFMCKT7T@ims05.idc.renesas.com>; Tue, 06 Jul 2010 13:31:41 +0900 (JST) Date: Tue, 06 Jul 2010 13:31:40 +0900 From: Yoshihiro Shimoda Subject: [PATCH v2 2/6] sh: fix the id of scif in setup-sh7757 To: Paul Mundt Cc: SH-Linux Message-id: <4C32B1AC.3020607@renesas.com> MIME-version: 1.0 Content-type: text/plain; charset=ISO-8859-1 Content-transfer-encoding: 7bit User-Agent: Thunderbird 2.0.0.14 (Windows/20080421) X-Brightmail-Tracker: AAAAAA== 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]); Tue, 06 Jul 2010 04:31:47 +0000 (UTC) diff --git a/arch/sh/kernel/cpu/sh4a/setup-sh7757.c b/arch/sh/kernel/cpu/sh4a/setup-sh7757.c index 444aca9..93b7aa4 100644 --- a/arch/sh/kernel/cpu/sh4a/setup-sh7757.c +++ b/arch/sh/kernel/cpu/sh4a/setup-sh7757.c @@ -26,7 +26,7 @@ static struct plat_sci_port scif2_platform_data = { static struct platform_device scif2_device = { .name = "sh-sci", - .id = 2, + .id = 0, .dev = { .platform_data = &scif2_platform_data, }, @@ -41,7 +41,7 @@ static struct plat_sci_port scif3_platform_data = { static struct platform_device scif3_device = { .name = "sh-sci", - .id = 3, + .id = 1, .dev = { .platform_data = &scif3_platform_data, }, @@ -56,7 +56,7 @@ static struct plat_sci_port scif4_platform_data = { static struct platform_device scif4_device = { .name = "sh-sci", - .id = 4, + .id = 2, .dev = { .platform_data = &scif4_platform_data, },