From patchwork Fri Jun 17 02:30:56 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nobuhiro Iwamatsu X-Patchwork-Id: 890162 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter2.kernel.org (8.14.4/8.14.4) with ESMTP id p5H2jj9G030084 for ; Fri, 17 Jun 2011 02:45:45 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753420Ab1FQCpp (ORCPT ); Thu, 16 Jun 2011 22:45:45 -0400 Received: from mail-pv0-f174.google.com ([74.125.83.174]:61849 "EHLO mail-pv0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752422Ab1FQCpo (ORCPT ); Thu, 16 Jun 2011 22:45:44 -0400 Received: by pvg12 with SMTP id 12so1476755pvg.19 for ; Thu, 16 Jun 2011 19:45:44 -0700 (PDT) Received: by 10.68.4.161 with SMTP id l1mr883013pbl.55.1308278353990; Thu, 16 Jun 2011 19:39:13 -0700 (PDT) Received: from localhost.localdomain (49.14.32.202.bf.2iij.net [202.32.14.49]) by mx.google.com with ESMTPS id 10sm1283450pbk.29.2011.06.16.19.39.12 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 16 Jun 2011 19:39:13 -0700 (PDT) From: Nobuhiro Iwamatsu To: linux-sh@vger.kernel.org Cc: Nobuhiro Iwamatsu Subject: [PATCH] sh: Fix build by forgetting comma Date: Fri, 17 Jun 2011 11:30:56 +0900 Message-Id: <1308277856-16708-1-git-send-email-nobuhiro.iwamatsu.yj@renesas.com> X-Mailer: git-send-email 1.7.5.4 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.6 (demeter2.kernel.org [140.211.167.43]); Fri, 17 Jun 2011 02:45:45 +0000 (UTC) Signed-off-by: Nobuhiro Iwamatsu --- arch/sh/kernel/cpu/sh4/setup-sh7750.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/sh/kernel/cpu/sh4/setup-sh7750.c b/arch/sh/kernel/cpu/sh4/setup-sh7750.c index c10db5b..98cc0c7 100644 --- a/arch/sh/kernel/cpu/sh4/setup-sh7750.c +++ b/arch/sh/kernel/cpu/sh4/setup-sh7750.c @@ -38,7 +38,7 @@ static struct platform_device rtc_device = { static struct plat_sci_port sci_platform_data = { .mapbase = 0xffe00000, - .port_reg = 0xffe0001C + .port_reg = 0xffe0001C, .flags = UPF_BOOT_AUTOCONF, .scscr = SCSCR_TE | SCSCR_RE, .scbrr_algo_id = SCBRR_ALGO_2,