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=-10.3 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=ham 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 4E1B8C3F2CD for ; Thu, 5 Mar 2020 06:25:34 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 1B00B207FD for ; Thu, 5 Mar 2020 06:25:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1725914AbgCEGZd (ORCPT ); Thu, 5 Mar 2020 01:25:33 -0500 Received: from mga03.intel.com ([134.134.136.65]:55516 "EHLO mga03.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725839AbgCEGZd (ORCPT ); Thu, 5 Mar 2020 01:25:33 -0500 X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 04 Mar 2020 22:25:32 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,517,1574150400"; d="scan'208";a="232855280" Received: from lkp-server01.sh.intel.com (HELO lkp-server01) ([10.239.97.150]) by fmsmga007.fm.intel.com with ESMTP; 04 Mar 2020 22:25:30 -0800 Received: from kbuild by lkp-server01 with local (Exim 4.89) (envelope-from ) id 1j9jwn-000Aql-SZ; Thu, 05 Mar 2020 14:25:29 +0800 Date: Thu, 5 Mar 2020 14:25:22 +0800 From: kbuild test robot To: Loic Poulain Cc: kbuild-all@lists.01.org, wsa@the-dreams.de, vkoul@kernel.org, bjorn.andersson@linaro.org, robert.foss@linaro.org, linux-arm-msm@vger.kernel.org, linux-i2c@vger.kernel.org, Loic Poulain , Todor Tomov Subject: [PATCH] i2c: fix semicolon.cocci warnings Message-ID: <20200305062522.GA95406@1cd0c43c5f30> References: <1583340776-27865-1-git-send-email-loic.poulain@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1583340776-27865-1-git-send-email-loic.poulain@linaro.org> X-Patchwork-Hint: ignore User-Agent: Mutt/1.10.1 (2018-07-13) Sender: linux-arm-msm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org From: kbuild test robot drivers/i2c/busses/i2c-qcom-cci.c:261:49-50: Unneeded semicolon Remove unneeded semicolon. Generated by: scripts/coccinelle/misc/semicolon.cocci Fixes: 7c495c97e573 ("i2c: Add Qualcomm CCI I2C driver") CC: Loic Poulain Signed-off-by: kbuild test robot --- url: https://github.com/0day-ci/linux/commits/Loic-Poulain/i2c-Add-Qualcomm-CCI-I2C-driver/20200305-051618 base: https://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git i2c/for-next i2c-qcom-cci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/i2c/busses/i2c-qcom-cci.c +++ b/drivers/i2c/busses/i2c-qcom-cci.c @@ -258,7 +258,7 @@ static int cci_init(struct cci *cci) const struct hw_params *hw = &cci->data->params[mode]; val = hw->thigh << 16 | hw->tlow; - writel(val, cci->base + CCI_I2C_Mm_SCL_CTL(i));; + writel(val, cci->base + CCI_I2C_Mm_SCL_CTL(i)); val = hw->tsu_sto << 16 | hw->tsu_sta; writel(val, cci->base + CCI_I2C_Mm_SDA_CTL_0(i));