From patchwork Tue Sep 18 16:36:12 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Senna Tschudin X-Patchwork-Id: 184759 Return-Path: X-Original-To: incoming-imx@patchwork.ozlabs.org Delivered-To: patchwork-incoming-imx@bilbo.ozlabs.org Received: from merlin.infradead.org (unknown [IPv6:2001:4978:20e::2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 70E692C007F for ; Wed, 19 Sep 2012 02:41:52 +1000 (EST) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1TE0pW-0002Oz-PG; Tue, 18 Sep 2012 16:39:23 +0000 Received: from mail-wg0-f41.google.com ([74.125.82.41]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1TE0mr-0000uj-Te for linux-arm-kernel@lists.infradead.org; Tue, 18 Sep 2012 16:36:38 +0000 Received: by wgbds1 with SMTP id ds1so3436225wgb.0 for ; Tue, 18 Sep 2012 09:36:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; bh=FcH1RHxp5kf1yB+baGhMNcjbQZ0Q3IWz5fvWXgJb3f0=; b=x1kY+SXoIBwheCMhYGb+seqmHds3veUxhzpAhVEDmGZRuk+DmFLPrAA5495Lm9huMt Y2iDraXeLNW7KOwqOIcARgOKMePPuKGr2QW8w7MiRgOzW0pEWLKD2bGFNQGb2JpyGEqM qFlUo7OCShpnfpzQgory0JIlgYzWDNmP/Klo55rYp8Ieoa8gSTf3E9cfwcZ0WcfjjCEy c3q+NoIXGX/DGdij5VjiQ3bG7ELLIf2skqoZSqWsSe4bwbFkSR6nZuQN7H9DLKor+E3E BAcz1f6zlMyYb8hVzuM8JqcT3rW7aolIN9qq+sb4t47BPETc/VYk+6a+9dllY1DBRiiX fqZw== Received: by 10.180.77.34 with SMTP id p2mr898378wiw.0.1347986188541; Tue, 18 Sep 2012 09:36:28 -0700 (PDT) Received: from ace.home.fr (ppeter.rsr.lip6.fr. [132.227.76.16]) by mx.google.com with ESMTPS id r9sm119787wia.2.2012.09.18.09.36.27 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 18 Sep 2012 09:36:28 -0700 (PDT) From: Peter Senna Tschudin To: kernel@pengutronix.de Subject: [PATCH] arch/arm/plat-mxc/ulpi.c: Remove unecessary semicolon Date: Tue, 18 Sep 2012 18:36:12 +0200 Message-Id: <1347986174-30287-5-git-send-email-peter.senna@gmail.com> X-Mailer: git-send-email 1.7.11.4 In-Reply-To: <1347986174-30287-1-git-send-email-peter.senna@gmail.com> References: <1347986174-30287-1-git-send-email-peter.senna@gmail.com> X-Spam-Note: CRM114 invocation failed X-Spam-Score: -2.7 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.7 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [74.125.82.41 listed in list.dnswl.org] 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (peter.senna[at]gmail.com) -0.0 SPF_PASS SPF: sender matches SPF record -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature Cc: kernel-janitors@vger.kernel.org, Peter Senna Tschudin , linux@arm.linux.org.uk, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.14 Precedence: list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+incoming-imx=patchwork.ozlabs.org@lists.infradead.org List-Id: linux-imx-kernel.lists.patchwork.ozlabs.org Found by http://coccinelle.lip6.fr/ Signed-off-by: Peter Senna Tschudin --- arch/arm/plat-mxc/ulpi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/plat-mxc/ulpi.c b/arch/arm/plat-mxc/ulpi.c index d296342..a799afb 100644 --- a/arch/arm/plat-mxc/ulpi.c +++ b/arch/arm/plat-mxc/ulpi.c @@ -51,7 +51,7 @@ static int ulpi_poll(void __iomem *view, u32 bit) return 0; cpu_relax(); - }; + } printk(KERN_WARNING "timeout polling for ULPI device\n");