summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormglocker <mglocker@openbsd.org>2019-03-17 08:13:48 +0000
committermglocker <mglocker@openbsd.org>2019-03-17 08:13:48 +0000
commite56e3c13e956d6f1eca47d6b5a5932bfb40385e3 (patch)
treef0e6c9e955405f07c5526e7a9e0350eb7a7863cb
parentLet each interrupt controller driver choose how to implement (diff)
downloadwireguard-openbsd-e56e3c13e956d6f1eca47d6b5a5932bfb40385e3.tar.xz
wireguard-openbsd-e56e3c13e956d6f1eca47d6b5a5932bfb40385e3.zip
Remove obsolete semicolon at end of case switch.
-rw-r--r--sys/dev/usb/xhci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/xhci.c b/sys/dev/usb/xhci.c
index f5bf8aa0d3d..9f54cf80d3b 100644
--- a/sys/dev/usb/xhci.c
+++ b/sys/dev/usb/xhci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: xhci.c,v 1.98 2019/03/16 19:35:35 mglocker Exp $ */
+/* $OpenBSD: xhci.c,v 1.99 2019/03/17 08:13:48 mglocker Exp $ */
/*
* Copyright (c) 2014-2015 Martin Pieuchot
@@ -732,7 +732,7 @@ xhci_event_xfer(struct xhci_softc *sc, uint64_t paddr, uint32_t status,
return;
default:
break;
- };
+ }
trb_idx = (paddr - xp->ring.dma.paddr) / sizeof(struct xhci_trb);
if (trb_idx < 0 || trb_idx >= xp->ring.ntrb) {