From patchwork Wed Nov 9 16:35:18 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fengguang Wu X-Patchwork-Id: 9419771 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id C753B6048E for ; Wed, 9 Nov 2016 16:38:20 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id BC73629255 for ; Wed, 9 Nov 2016 16:38:20 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id B108929264; Wed, 9 Nov 2016 16:38:20 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-4.2 required=2.0 tests=BAYES_00, RCVD_IN_DNSWL_MED autolearn=ham version=3.3.1 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.9]) (using TLSv1.2 with cipher AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id 0427129255 for ; Wed, 9 Nov 2016 16:38:19 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.85_2 #1 (Red Hat Linux)) id 1c4VrH-0001Yc-CL; Wed, 09 Nov 2016 16:36:19 +0000 Received: from mga14.intel.com ([192.55.52.115]) by bombadil.infradead.org with esmtps (Exim 4.85_2 #1 (Red Hat Linux)) id 1c4Vr6-0001WL-BN for linux-arm-kernel@lists.infradead.org; Wed, 09 Nov 2016 16:36:09 +0000 Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga103.fm.intel.com with ESMTP; 09 Nov 2016 08:35:47 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos; i="5.31,614,1473145200"; d="scan'208"; a="1082897571" Received: from bee.sh.intel.com (HELO bee) ([10.239.97.14]) by fmsmga002.fm.intel.com with ESMTP; 09 Nov 2016 08:35:44 -0800 Received: from kbuild by bee with local (Exim 4.84_2) (envelope-from ) id 1c4VrU-000KOK-BU; Thu, 10 Nov 2016 00:36:32 +0800 Date: Thu, 10 Nov 2016 00:35:18 +0800 From: kbuild test robot To: Chen-Yu Tsai Subject: [PATCH] ASoC: sun4i-codec: fix semicolon.cocci warnings Message-ID: <20161109163518.GA42508@lkp-nex06.lkp.intel.com> References: <201611100003.EAHNoIbz%fengguang.wu@intel.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <201611100003.EAHNoIbz%fengguang.wu@intel.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 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20161109_083608_679472_B5A5C6B8 X-CRM114-Status: GOOD ( 10.57 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: alsa-devel@alsa-project.org, Liam Girdwood , Danny Milosavljevic , Takashi Iwai , Jaroslav Kysela , Hans de Goede , Mark Brown , kbuild-all@01.org, Maxime Ripard , linux-arm-kernel@lists.infradead.org Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Virus-Scanned: ClamAV using ClamSMTP sound/soc/sunxi/sun4i-codec.c:1339:2-3: Unneeded semicolon Remove unneeded semicolon. Generated by: scripts/coccinelle/misc/semicolon.cocci CC: Chen-Yu Tsai Signed-off-by: Fengguang Wu Acked-by: Chen-Yu Tsai --- sun4i-codec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/sound/soc/sunxi/sun4i-codec.c +++ b/sound/soc/sunxi/sun4i-codec.c @@ -1336,7 +1336,7 @@ static int sun4i_codec_probe(struct plat dev_err(&pdev->dev, "Failed to get reset control\n"); return PTR_ERR(scodec->rst); } - }; + } scodec->gpio_pa = devm_gpiod_get_optional(&pdev->dev, "allwinner,pa", GPIOD_OUT_LOW);