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=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 04243C4338F for ; Thu, 5 Aug 2021 08:21:38 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id CDC5360F43 for ; Thu, 5 Aug 2021 08:21:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S239409AbhHEIVu (ORCPT ); Thu, 5 Aug 2021 04:21:50 -0400 Received: from mga14.intel.com ([192.55.52.115]:24872 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231359AbhHEIVt (ORCPT ); Thu, 5 Aug 2021 04:21:49 -0400 X-IronPort-AV: E=McAfee;i="6200,9189,10066"; a="213828904" X-IronPort-AV: E=Sophos;i="5.84,296,1620716400"; d="scan'208";a="213828904" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 05 Aug 2021 01:21:35 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.84,296,1620716400"; d="scan'208";a="503320064" Received: from lkp-server01.sh.intel.com (HELO d053b881505b) ([10.239.97.150]) by fmsmga004.fm.intel.com with ESMTP; 05 Aug 2021 01:21:34 -0700 Received: from kbuild by d053b881505b with local (Exim 4.92) (envelope-from ) id 1mBYdB-000Fh9-GV; Thu, 05 Aug 2021 08:21:33 +0000 Date: Thu, 5 Aug 2021 16:20:59 +0800 From: kernel test robot To: Arnd Bergmann Cc: kbuild-all@lists.01.org, linux-kernel@vger.kernel.org, Sven Peter Subject: [PATCH] nvme: fix semicolon.cocci warnings Message-ID: <20210805082059.GA115555@19488c064008> References: <202108051646.vdMMUBea-lkp@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <202108051646.vdMMUBea-lkp@intel.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 drivers/nvme/host/pci.c:2249:2-3: Unneeded semicolon Remove unneeded semicolon. Generated by: scripts/coccinelle/misc/semicolon.cocci Fixes: 52fea7af90e4 ("nvme: skip remapping BAR on non-PCI devices") CC: Arnd Bergmann Reported-by: kernel test robot Signed-off-by: kernel test robot --- tree: https://github.com/AsahiLinux/linux nvme/dev head: 70ce58861f9029c98ddcfb26787a58bbac183cc2 commit: 52fea7af90e4babd35f8d004ef26758a50fe53ed [13/17] nvme: skip remapping BAR on non-PCI devices :::::: branch date: 5 days ago :::::: commit date: 5 days ago pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/nvme/host/pci.c +++ b/drivers/nvme/host/pci.c @@ -2246,7 +2246,7 @@ static int nvme_setup_io_queues(struct n break; if (!--nr_io_queues) return -ENOMEM; - }; + } adminq->q_db = dev->dbs; retry: