From patchwork Sat Apr 28 05:16:43 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: kernel test robot X-Patchwork-Id: 10370109 X-Patchwork-Delegate: agross@codeaurora.org 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 AA5B3601BE for ; Sat, 28 Apr 2018 05:17:54 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 9A26D2841D for ; Sat, 28 Apr 2018 05:17:54 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 8EF2028614; Sat, 28 Apr 2018 05:17:54 +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=-7.9 required=2.0 tests=BAYES_00, MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 1F3162841D for ; Sat, 28 Apr 2018 05:17:54 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752534AbeD1FRi (ORCPT ); Sat, 28 Apr 2018 01:17:38 -0400 Received: from mga09.intel.com ([134.134.136.24]:45554 "EHLO mga09.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752533AbeD1FRf (ORCPT ); Sat, 28 Apr 2018 01:17:35 -0400 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga007.jf.intel.com ([10.7.209.58]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 27 Apr 2018 22:17:35 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.49,337,1520924400"; d="scan'208";a="36810558" Received: from bee.sh.intel.com (HELO bee) ([10.239.97.14]) by orsmga007.jf.intel.com with ESMTP; 27 Apr 2018 22:17:34 -0700 Received: from kbuild by bee with local (Exim 4.84_2) (envelope-from ) id 1fCIEk-000Rr8-8r; Sat, 28 Apr 2018 13:17:30 +0800 Date: Sat, 28 Apr 2018 13:16:43 +0800 From: kbuild test robot To: Sujeev Dias Cc: kbuild-all@01.org, Greg Kroah-Hartman , Arnd Bergmann , Sujeev Dias , linux-kernel@vger.kernel.org, linux-arm-msm@vger.kernel.org, Tony Truong Subject: [PATCH] mhi_bus: dev: uci: fix semicolon.cocci warnings Message-ID: <20180428051643.GA68605@cairo> References: <1524795811-21399-5-git-send-email-sdias@codeaurora.org> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <1524795811-21399-5-git-send-email-sdias@codeaurora.org> 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-arm-msm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Fengguang Wu drivers/bus/mhi/devices/mhi_uci.c:556:2-3: Unneeded semicolon Remove unneeded semicolon. Generated by: scripts/coccinelle/misc/semicolon.cocci Fixes: 2064c7ebc5cb ("mhi_bus: dev: uci: add user space interface driver") CC: Sujeev Dias Signed-off-by: Fengguang Wu --- mhi_uci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- To unsubscribe from this list: send the line "unsubscribe linux-arm-msm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- a/drivers/bus/mhi/devices/mhi_uci.c +++ b/drivers/bus/mhi/devices/mhi_uci.c @@ -553,7 +553,7 @@ static int mhi_uci_probe(struct mhi_devi spin_lock_init(&uci_chan->lock); init_waitqueue_head(&uci_chan->wq); INIT_LIST_HEAD(&uci_chan->pending); - }; + } uci_dev->mtu = id->driver_data; mhi_device_set_devdata(mhi_dev, uci_dev);