[PATCH] nvme: fix semicolon.cocci warnings

From: kernel test robot
Date: Thu Aug 05 2021 - 04:21:37 EST


From: kernel test robot <lkp@xxxxxxxxx>

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 <arnd@xxxxxxxx>
Reported-by: kernel test robot <lkp@xxxxxxxxx>
Signed-off-by: kernel test robot <lkp@xxxxxxxxx>
---

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: