From patchwork Thu May 7 07:47:35 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jarkko Nikula X-Patchwork-Id: 22255 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 n477kIEg017465 for ; Thu, 7 May 2009 07:46:18 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752775AbZEGHqN (ORCPT ); Thu, 7 May 2009 03:46:13 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753897AbZEGHqN (ORCPT ); Thu, 7 May 2009 03:46:13 -0400 Received: from an-out-0708.google.com ([209.85.132.244]:22606 "EHLO an-out-0708.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752775AbZEGHqM (ORCPT ); Thu, 7 May 2009 03:46:12 -0400 Received: by an-out-0708.google.com with SMTP id d40so1871417and.1 for ; Thu, 07 May 2009 00:46:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:date :message-id:x-mailer; bh=AfW7WET84OUns1aXSFB4tdvMgbtqFOrbbEY6fdTXwZs=; b=SWRXqCUStrQu4RLcr/3k7CywDGf3axSoJFQgU9K/1zLypvR+o+ygEZx9YMehtZOyhr keOeuTeCpUUGHNjZqLFW+/xvEHIhhkm7iN46oLMjF2nnMH+DLvhiWl2VsIfIOw8kpbQR RO/X7AeUvMF4YhqqAz2cAJNVxg6Wup7AFeas0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; b=KAddHsoC6PF+AjYx4UtzLeZLzqPDeYrEA4UJrRtWfZRoiaa73TEO4PpUzU3cLigHpE 6moXjT0ExFr+fYY94qlDyHdFpYWdgoFpKjbgH7GrIhF30LwQHKsjG3AidN8VH5QpYvVE qF2j287ki6IOTkxq6p1wLn9KqznkquTrhW2nQ= Received: by 10.100.137.12 with SMTP id k12mr4715934and.123.1241682371739; Thu, 07 May 2009 00:46:11 -0700 (PDT) Received: from localhost (host-94-101-4-66.taloyhtioverkot.fi [94.101.4.66]) by mx.google.com with ESMTPS id b29sm3336561ana.31.2009.05.07.00.46.10 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 07 May 2009 00:46:11 -0700 (PDT) From: Jarkko Nikula To: linux-omap@vger.kernel.org Cc: Jarkko Nikula Subject: [PATCH] onenand_init: Fix missing comma Date: Thu, 7 May 2009 10:47:35 +0300 Message-Id: <1241682455-14057-1-git-send-email-jhnikula@gmail.com> X-Mailer: git-send-email 1.6.2.4 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org Signed-off-by: Jarkko Nikula --- arch/arm/mach-omap2/gpmc-onenand.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/mach-omap2/gpmc-onenand.c b/arch/arm/mach-omap2/gpmc-onenand.c index 71fc05a..712af59 100644 --- a/arch/arm/mach-omap2/gpmc-onenand.c +++ b/arch/arm/mach-omap2/gpmc-onenand.c @@ -123,7 +123,7 @@ static int omap2_onenand_set_sync_mode(struct omap_onenand_platform_data *cfg, const int t_wph = 30; int min_gpmc_clk_period, t_ces, t_avds, t_avdh, t_ach, t_aavdh, t_rdyo; int tick_ns, div, fclk_offset_ns, fclk_offset, gpmc_clk_ns, latency; - int first_time = 0, hf = 0 sync_read = 0, sync_write = 0; + int first_time = 0, hf = 0, sync_read = 0, sync_write = 0; int err, ticks_cez; int cs = cfg->cs; u32 reg;