Module Name: src
Committed By: skrll
Date: Fri Jan 11 15:39:24 UTC 2019
Modified Files:
src/sys/dev/usb: xhci.c
Log Message:
Style
To generate a diff of this commit:
cvs rdiff -u -r1.101 -r1.102 src/sys/dev/usb/xhci.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/usb/xhci.c
diff -u src/sys/dev/usb/xhci.c:1.101 src/sys/dev/usb/xhci.c:1.102
--- src/sys/dev/usb/xhci.c:1.101 Mon Jan 7 03:00:39 2019
+++ src/sys/dev/usb/xhci.c Fri Jan 11 15:39:24 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: xhci.c,v 1.101 2019/01/07 03:00:39 jakllsch Exp $ */
+/* $NetBSD: xhci.c,v 1.102 2019/01/11 15:39:24 skrll Exp $ */
/*
* Copyright (c) 2013 Jonathan A. Kollasch
@@ -34,7 +34,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: xhci.c,v 1.101 2019/01/07 03:00:39 jakllsch Exp $");
+__KERNEL_RCSID(0, "$NetBSD: xhci.c,v 1.102 2019/01/11 15:39:24 skrll Exp $");
#ifdef _KERNEL_OPT
#include "opt_usb.h"
@@ -912,7 +912,8 @@ xhci_start(struct xhci_softc *sc)
aprint_debug_dev(sc->sc_dev, "current IMOD %u\n",
xhci_rt_read_4(sc, XHCI_IMOD(0)));
- xhci_op_write_4(sc, XHCI_USBCMD, XHCI_CMD_INTE|XHCI_CMD_RS); /* Go! */
+ /* Go! */
+ xhci_op_write_4(sc, XHCI_USBCMD, XHCI_CMD_INTE|XHCI_CMD_RS);
aprint_debug_dev(sc->sc_dev, "USBCMD %08"PRIx32"\n",
xhci_op_read_4(sc, XHCI_USBCMD));
}