From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-20.2 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED, USER_AGENT_SANE_1 autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 47398C4332B for ; Wed, 3 Mar 2021 10:53:43 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id F0FDB64EF4 for ; Wed, 3 Mar 2021 10:53:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1347234AbhCCKng (ORCPT ); Wed, 3 Mar 2021 05:43:36 -0500 Received: from mga12.intel.com ([192.55.52.136]:1277 "EHLO mga12.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1838121AbhCBXEt (ORCPT ); Tue, 2 Mar 2021 18:04:49 -0500 IronPort-SDR: PmsuCiw2Wfy7t8DnNM5fLPsKkN787MmV+vFDVQHZ20p5zNC4sa8M+pFzrx3y5wdmxb/UAfclXx CqnZ4NNhZp4w== X-IronPort-AV: E=McAfee;i="6000,8403,9911"; a="166267220" X-IronPort-AV: E=Sophos;i="5.81,218,1610438400"; d="scan'208";a="166267220" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 02 Mar 2021 14:57:25 -0800 IronPort-SDR: iLQsksdjxmN9Ef8vJXR8vJ1TbfpFQUgHR8hliYlgmHyGtPFOSAjjPUluGScmDt22zivoGQAlBB 0+ulSUsnAuIA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.81,218,1610438400"; d="scan'208";a="369134573" Received: from lkp-server02.sh.intel.com (HELO 2482ff9f8ac0) ([10.239.97.151]) by orsmga006.jf.intel.com with ESMTP; 02 Mar 2021 14:57:22 -0800 Received: from kbuild by 2482ff9f8ac0 with local (Exim 4.92) (envelope-from ) id 1lHDxB-0000jB-N8; Tue, 02 Mar 2021 22:57:21 +0000 Date: Wed, 3 Mar 2021 06:56:23 +0800 From: kernel test robot To: Lucas Tanure , James Schulman , David Rhodes , Mark Brown , Liam Girdwood Cc: kbuild-all@lists.01.org, patches@opensource.cirrus.com, Richard Fitzgerald , alsa-devel@alsa-project.org, Lucas Tanure , linux-kernel@vger.kernel.org Subject: [PATCH] ASoC: cs42l42: fix semicolon.cocci warnings Message-ID: <20210302225623.GA39303@1d317909719f> References: <20210302170454.39679-13-tanureal@opensource.cirrus.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210302170454.39679-13-tanureal@opensource.cirrus.com> X-Patchwork-Hint: ignore User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: kernel test robot sound/soc/codecs/cs42l42.c:811:2-3: Unneeded semicolon Remove unneeded semicolon. Generated by: scripts/coccinelle/misc/semicolon.cocci CC: Richard Fitzgerald Reported-by: kernel test robot Signed-off-by: kernel test robot --- url: https://github.com/0day-ci/linux/commits/Lucas-Tanure/Report-jack-and-button-detection-Capture-Support/20210303-012348 base: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next cs42l42.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/sound/soc/codecs/cs42l42.c +++ b/sound/soc/codecs/cs42l42.c @@ -808,7 +808,7 @@ static int cs42l42_pcm_hw_params(struct break; default: break; - }; + } return cs42l42_pll_config(component); }