Module Name:    src
Committed By:   skrll
Date:           Mon May 30 06:51:21 UTC 2016

Modified Files:
        src/sys/dev/usb [nick-nhusb]: uhci.c

Log Message:
Unwrap some lines


To generate a diff of this commit:
cvs rdiff -u -r1.264.4.76 -r1.264.4.77 src/sys/dev/usb/uhci.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/uhci.c
diff -u src/sys/dev/usb/uhci.c:1.264.4.76 src/sys/dev/usb/uhci.c:1.264.4.77
--- src/sys/dev/usb/uhci.c:1.264.4.76	Sun May 29 08:44:31 2016
+++ src/sys/dev/usb/uhci.c	Mon May 30 06:51:21 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: uhci.c,v 1.264.4.76 2016/05/29 08:44:31 skrll Exp $	*/
+/*	$NetBSD: uhci.c,v 1.264.4.77 2016/05/30 06:51:21 skrll Exp $	*/
 
 /*
  * Copyright (c) 1998, 2004, 2011, 2012 The NetBSD Foundation, Inc.
@@ -42,7 +42,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uhci.c,v 1.264.4.76 2016/05/29 08:44:31 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uhci.c,v 1.264.4.77 2016/05/30 06:51:21 skrll Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_usb.h"
@@ -3320,18 +3320,15 @@ uhci_add_intr(uhci_softc_t *sc, uhci_sof
 
 	eqh = vf->eqh;
 	usb_syncmem(&eqh->dma, eqh->offs + offsetof(uhci_qh_t, qh_hlink),
-	    sizeof(eqh->qh.qh_hlink),
-	    BUS_DMASYNC_POSTWRITE);
+	    sizeof(eqh->qh.qh_hlink), BUS_DMASYNC_POSTWRITE);
 	sqh->hlink       = eqh->hlink;
 	sqh->qh.qh_hlink = eqh->qh.qh_hlink;
 	usb_syncmem(&sqh->dma, sqh->offs + offsetof(uhci_qh_t, qh_hlink),
-	    sizeof(sqh->qh.qh_hlink),
-	    BUS_DMASYNC_PREWRITE);
+	    sizeof(sqh->qh.qh_hlink), BUS_DMASYNC_PREWRITE);
 	eqh->hlink       = sqh;
 	eqh->qh.qh_hlink = htole32(sqh->physaddr | UHCI_PTR_QH);
 	usb_syncmem(&eqh->dma, eqh->offs + offsetof(uhci_qh_t, qh_hlink),
-	    sizeof(eqh->qh.qh_hlink),
-	    BUS_DMASYNC_PREWRITE);
+	    sizeof(eqh->qh.qh_hlink), BUS_DMASYNC_PREWRITE);
 	vf->eqh = sqh;
 	vf->bandwidth++;
 }

Reply via email to