Module Name: src
Committed By: skrll
Date: Sat Apr 30 14:51:04 UTC 2016
Modified Files:
src/sys/dev/usb: xhci.c
Log Message:
Wrap long line. From t-hash.
To generate a diff of this commit:
cvs rdiff -u -r1.35 -r1.36 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.35 src/sys/dev/usb/xhci.c:1.36
--- src/sys/dev/usb/xhci.c:1.35 Sat Apr 30 14:46:05 2016
+++ src/sys/dev/usb/xhci.c Sat Apr 30 14:51:04 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: xhci.c,v 1.35 2016/04/30 14:46:05 skrll Exp $ */
+/* $NetBSD: xhci.c,v 1.36 2016/04/30 14:51:04 skrll Exp $ */
/*
* Copyright (c) 2013 Jonathan A. Kollasch
@@ -36,7 +36,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: xhci.c,v 1.35 2016/04/30 14:46:05 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: xhci.c,v 1.36 2016/04/30 14:51:04 skrll Exp $");
#include "opt_usb.h"
@@ -840,7 +840,8 @@ xhci_init(struct xhci_softc *sc)
if (err)
return err;
- sc->sc_spbuf_dma = kmem_zalloc(sizeof(*sc->sc_spbuf_dma) * sc->sc_maxspbuf, KM_SLEEP);
+ sc->sc_spbuf_dma = kmem_zalloc(sizeof(*sc->sc_spbuf_dma) *
+ sc->sc_maxspbuf, KM_SLEEP);
uint64_t *spbufarray = KERNADDR(&sc->sc_spbufarray_dma, 0);
for (i = 0; i < sc->sc_maxspbuf; i++) {
usb_dma_t * const dma = &sc->sc_spbuf_dma[i];