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.5 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING, SIGNED_OFF_BY,SPF_PASS,URIBL_BLOCKED,USER_AGENT_MUTT 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 B45F3C282C3 for ; Tue, 22 Jan 2019 07:04:19 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 83CE220854 for ; Tue, 22 Jan 2019 07:04:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727252AbfAVHES (ORCPT ); Tue, 22 Jan 2019 02:04:18 -0500 Received: from mga03.intel.com ([134.134.136.65]:46163 "EHLO mga03.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727009AbfAVHEN (ORCPT ); Tue, 22 Jan 2019 02:04:13 -0500 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 21 Jan 2019 23:04:13 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,505,1539673200"; d="scan'208";a="129671236" Received: from lkp-server01.sh.intel.com (HELO lkp-server01) ([10.239.97.150]) by orsmga001.jf.intel.com with ESMTP; 21 Jan 2019 23:04:11 -0800 Received: from kbuild by lkp-server01 with local (Exim 4.89) (envelope-from ) id 1glq6V-000F6R-AV; Tue, 22 Jan 2019 15:04:11 +0800 Date: Tue, 22 Jan 2019 15:03:14 +0800 From: kbuild test robot To: sean.wang@mediatek.com Cc: kbuild-all@01.org, marcel@holtmann.org, johan.hedberg@gmail.com, linux-bluetooth@vger.kernel.org, linux-mediatek@lists.infradead.org, linux-kernel@vger.kernel.org, Sean Wang Subject: [PATCH] Bluetooth: btusb: fix semicolon.cocci warnings Message-ID: <20190122070314.GA27239@lkp-hsx02> References: <508f1c6ddf2e7d2a88d267e418159e929bf133c5.1547849398.git.sean.wang@mediatek.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <508f1c6ddf2e7d2a88d267e418159e929bf133c5.1547849398.git.sean.wang@mediatek.com> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: kbuild test robot drivers/bluetooth/btusb.c:2683:2-3: Unneeded semicolon Remove unneeded semicolon. Generated by: scripts/coccinelle/misc/semicolon.cocci Fixes: 49e8dd3d9eae ("Bluetooth: btusb: Add protocol support for MediaTek MT7668U USB devices") CC: Sean Wang Signed-off-by: kbuild test robot --- url: https://github.com/0day-ci/linux/commits/sean-wang-mediatek-com/Bluetooth-btusb-Add-protocol-support-for-MediaTek-MT7668U-USB-devices/20190122-041846 base: https://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git master btusb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/bluetooth/btusb.c +++ b/drivers/bluetooth/btusb.c @@ -2680,7 +2680,7 @@ static int btusb_mtk_hci_wmt_sync(struct else status = BTMTK_WMT_ON_UNDONE; break; - }; + } if (wmt_params->status) *wmt_params->status = status;