From patchwork Tue Sep 18 16:36:10 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: 1473791 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork1.kernel.org (Postfix) with ESMTP id CFBDE3FCFC for ; Tue, 18 Sep 2012 16:40:56 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1TE0ov-0001zR-LB; Tue, 18 Sep 2012 16:38:46 +0000 Received: from mail-we0-f177.google.com ([74.125.82.177]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1TE0mj-0000uE-Ag for linux-arm-kernel@lists.infradead.org; Tue, 18 Sep 2012 16:36:34 +0000 Received: by weyr3 with SMTP id r3so23163wey.36 for ; Tue, 18 Sep 2012 09:36:27 -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=PmKbsboTxrQ5CBDKmFXS8jJVgAfpDxKxu4vFRA/+yS4=; b=FW0tYKrKwno3j5pG0ssnApX/Izs63ctiyV4xKOVDUj1Z0wQuGdy1xmf0nlO3Ys/brZ CsLMZEtQIRA+OKIUQGWsQK6JQFN3HTDVRiIyJNXjE2tPrkrq2wUzJzDlayvK+S0NrQc/ cK9NPZu2dfIl+J1RoYzCQfysjqbmEIw4qD48UCaAYPR/zqEH5umQgUlAWym2oObO3qpZ wPwwstSiuE4wm/JlPZgfLSxeDR1GxlBnV9TtAqJC2JGLkI1IqUa+hw2GcgoByjBvcN4s uvmj9EkoVj1/ajnMatPBNJKUbtp024I+Kze9elLqDagw6Jz/OX1KU7G8LgiQ1LzUHFD8 /aDQ== Received: by 10.180.100.133 with SMTP id ey5mr741115wib.4.1347986187146; Tue, 18 Sep 2012 09:36:27 -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.26 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 18 Sep 2012 09:36:26 -0700 (PDT) From: Peter Senna Tschudin To: tony@atomide.com Subject: [PATCH] arch/arm/mach-omap1/devices.c: Remove unecessary semicolon Date: Tue, 18 Sep 2012 18:36:10 +0200 Message-Id: <1347986174-30287-3-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.177 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: linux@arm.linux.org.uk, Peter Senna Tschudin , kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org, linux-omap@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-Id: 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+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org Found by http://coccinelle.lip6.fr/ Signed-off-by: Peter Senna Tschudin --- arch/arm/mach-omap1/devices.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-omap1/devices.c b/arch/arm/mach-omap1/devices.c index fa1fa4d..688b23a 100644 --- a/arch/arm/mach-omap1/devices.c +++ b/arch/arm/mach-omap1/devices.c @@ -232,7 +232,7 @@ void __init omap1_init_mmc(struct omap_mmc_platform_data **mmc_data, omap_mmc_add("mmci-omap", i, base, size, irq, rx_req, tx_req, mmc_data[i]); - }; + } } #endif