From patchwork Mon Aug 13 09:50:44 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fengguang Wu X-Patchwork-Id: 10563959 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 1CEEA1390 for ; Mon, 13 Aug 2018 09:51:25 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 0CBC12900B for ; Mon, 13 Aug 2018 09:51:25 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id F1A0329012; Mon, 13 Aug 2018 09:51:24 +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 82BC02900B for ; Mon, 13 Aug 2018 09:51:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728701AbeHMMcy (ORCPT ); Mon, 13 Aug 2018 08:32:54 -0400 Received: from mga09.intel.com ([134.134.136.24]:29126 "EHLO mga09.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728610AbeHMMcx (ORCPT ); Mon, 13 Aug 2018 08:32:53 -0400 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 13 Aug 2018 02:51:23 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.53,232,1531810800"; d="scan'208";a="76220691" Received: from bee.sh.intel.com (HELO lkp-server01) ([10.239.97.14]) by fmsmga002.fm.intel.com with ESMTP; 13 Aug 2018 02:51:22 -0700 Received: from kbuild by lkp-server01 with local (Exim 4.89) (envelope-from ) id 1fp9VP-000I7e-W3; Mon, 13 Aug 2018 17:51:19 +0800 Date: Mon, 13 Aug 2018 17:50:44 +0800 From: kbuild test robot To: Erik Schmauss Cc: kbuild-all@01.org, linux-acpi@vger.kernel.org, rjw@rjwysocki.net, Bob Moore , Erik Schmauss Subject: [PATCH] ACPICA: Debugger: fix semicolon.cocci warnings Message-ID: <20180813095044.GA23840@lkp-wsm-ep2> References: <20180810214304.13475-7-erik.schmauss@intel.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20180810214304.13475-7-erik.schmauss@intel.com> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-acpi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: kbuild test robot drivers/acpi/acpica/dbinput.c:881:51-52: Unneeded semicolon Remove unneeded semicolon. Generated by: scripts/coccinelle/misc/semicolon.cocci Fixes: 7a9d6ec532d3 ("ACPICA: Debugger: Cleanup interface to the AML disassembler") CC: Bob Moore Signed-off-by: kbuild test robot --- dbinput.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/acpi/acpica/dbinput.c +++ b/drivers/acpi/acpica/dbinput.c @@ -878,7 +878,7 @@ acpi_db_command_dispatch(char *input_buf case CMD_LIST: #ifdef ACPI_DISASSEMBLER - acpi_db_disassemble_aml(acpi_gbl_db_args[1], op);; + acpi_db_disassemble_aml(acpi_gbl_db_args[1], op); #else acpi_os_printf ("The AML Disassembler is not configured/present\n");