Module Name: src
Committed By: skrll
Date: Tue Dec 1 11:50:22 UTC 2015
Modified Files:
src/sys/dev/usb [nick-nhusb]: ohci.c
Log Message:
Comment re-org / wrap long line
To generate a diff of this commit:
cvs rdiff -u -r1.254.2.31 -r1.254.2.32 src/sys/dev/usb/ohci.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/ohci.c
diff -u src/sys/dev/usb/ohci.c:1.254.2.31 src/sys/dev/usb/ohci.c:1.254.2.32
--- src/sys/dev/usb/ohci.c:1.254.2.31 Tue Dec 1 07:38:58 2015
+++ src/sys/dev/usb/ohci.c Tue Dec 1 11:50:22 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: ohci.c,v 1.254.2.31 2015/12/01 07:38:58 skrll Exp $ */
+/* $NetBSD: ohci.c,v 1.254.2.32 2015/12/01 11:50:22 skrll Exp $ */
/*
* Copyright (c) 1998, 2004, 2005, 2012 The NetBSD Foundation, Inc.
@@ -41,7 +41,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ohci.c,v 1.254.2.31 2015/12/01 07:38:58 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ohci.c,v 1.254.2.32 2015/12/01 11:50:22 skrll Exp $");
#include "opt_usb.h"
@@ -1154,7 +1154,8 @@ ohci_intr1(ohci_softc_t *sc)
if (!intrs)
return 0;
- OWRITE4(sc, OHCI_INTERRUPT_STATUS, intrs & ~(OHCI_MIE|OHCI_WDH)); /* Acknowledge */
+ /* Acknowledge */
+ OWRITE4(sc, OHCI_INTERRUPT_STATUS, intrs & ~(OHCI_MIE|OHCI_WDH));
eintrs = intrs & sc->sc_eintrs;
DPRINTFN(7, "sc=%p", sc, 0, 0, 0);
DPRINTFN(7, "intrs=%#x(%#x) eintrs=%#x(%#x)",