From patchwork Fri Mar 25 17:11:10 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: kernel test robot X-Patchwork-Id: 8672501 Return-Path: X-Original-To: patchwork-linux-mmc@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 40376C0553 for ; Fri, 25 Mar 2016 17:12:04 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 6F2582035B for ; Fri, 25 Mar 2016 17:12:03 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 4CB10203A0 for ; Fri, 25 Mar 2016 17:12:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753855AbcCYRLr (ORCPT ); Fri, 25 Mar 2016 13:11:47 -0400 Received: from mga01.intel.com ([192.55.52.88]:62714 "EHLO mga01.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753820AbcCYRLq (ORCPT ); Fri, 25 Mar 2016 13:11:46 -0400 Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga101.fm.intel.com with ESMTP; 25 Mar 2016 10:11:46 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.24,392,1455004800"; d="scan'208";a="73238836" Received: from bee.sh.intel.com (HELO bee) ([10.239.97.14]) by fmsmga004.fm.intel.com with ESMTP; 25 Mar 2016 10:11:44 -0700 Received: from kbuild by bee with local (Exim 4.83) (envelope-from ) id 1ajVGv-000MYi-9g; Sat, 26 Mar 2016 01:11:41 +0800 Date: Sat, 26 Mar 2016 01:11:10 +0800 From: kbuild test robot To: Ludovic Desroches Cc: kbuild-all@01.org, ulf.hansson@linaro.org, adrian.hunter@intel.com, linux-kernel@vger.kernel.org, linux-mmc@vger.kernel.org, linux-pm@vger.kernel.org, nicolas.ferre@atmel.com, Ludovic Desroches Subject: [PATCH] mmc: sdhci-of-at91: fix semicolon.cocci warnings Message-ID: <20160325171110.GA25372@lkp-ne04> References: <201603260102.emd05hRC%fengguang.wu@intel.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <1458921903-11133-3-git-send-email-ludovic.desroches@atmel.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: fengguang.wu@intel.com X-SA-Exim-Scanned: No (on bee); SAEximRunCond expanded to false Sender: linux-mmc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-mmc@vger.kernel.org X-Spam-Status: No, score=-7.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP drivers/mmc/host/sdhci-of-at91.c:94:2-3: Unneeded semicolon Remove unneeded semicolon. Generated by: scripts/coccinelle/misc/semicolon.cocci CC: Ludovic Desroches Signed-off-by: Fengguang Wu --- sdhci-of-at91.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- To unsubscribe from this list: send the line "unsubscribe linux-mmc" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- a/drivers/mmc/host/sdhci-of-at91.c +++ b/drivers/mmc/host/sdhci-of-at91.c @@ -91,7 +91,7 @@ static int sdhci_at91_runtime_suspend(st host->runtime_suspended = true; spin_unlock_irqrestore(&host->lock, flags); clk_disable_unprepare(priv->hclock); - }; + } clk_disable_unprepare(priv->gck); clk_disable_unprepare(priv->mainck);