Module Name:    src
Committed By:   skrll
Date:           Sun Mar  1 08:17:45 UTC 2015

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

Log Message:
Whitespace.


To generate a diff of this commit:
cvs rdiff -u -r1.234.2.31 -r1.234.2.32 src/sys/dev/usb/ehci.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/ehci.c
diff -u src/sys/dev/usb/ehci.c:1.234.2.31 src/sys/dev/usb/ehci.c:1.234.2.32
--- src/sys/dev/usb/ehci.c:1.234.2.31	Sun Feb 22 08:59:17 2015
+++ src/sys/dev/usb/ehci.c	Sun Mar  1 08:17:45 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: ehci.c,v 1.234.2.31 2015/02/22 08:59:17 skrll Exp $ */
+/*	$NetBSD: ehci.c,v 1.234.2.32 2015/03/01 08:17:45 skrll Exp $ */
 
 /*
  * Copyright (c) 2004-2012 The NetBSD Foundation, Inc.
@@ -53,7 +53,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.234.2.31 2015/02/22 08:59:17 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.234.2.32 2015/03/01 08:17:45 skrll Exp $");
 
 #include "ohci.h"
 #include "uhci.h"
@@ -1180,11 +1180,11 @@ ehci_idone(struct ehci_xfer *ex)
 	if (status & EHCI_QTD_HALTED) {
 #ifdef EHCI_DEBUG
 		USBHIST_LOG(ehcidebug, "halted addr=%d endpt=0x%02x",
-		   xfer->ux_pipe->up_dev->ud_addr,
-		   xfer->ux_pipe->up_endpoint->ue_edesc->bEndpointAddress, 0, 0);
-		USBHIST_LOG(ehcidebug, "cerr=%d pid=%d stat=%#x",
-		   EHCI_QTD_GET_CERR(status), EHCI_QTD_GET_PID(status),
-		   status, 0);
+		    xfer->ux_pipe->up_dev->ud_addr,
+		    xfer->ux_pipe->up_endpoint->ue_edesc->bEndpointAddress, 0, 0);
+		USBHIST_LOG(ehcidebug, "cerr=%d pid=%d",
+		    EHCI_QTD_GET_CERR(status), EHCI_QTD_GET_PID(status),
+		    0, 0);
 		USBHIST_LOG(ehcidebug,
 		    "active =%d halted=%d buferr=%d babble=%d",
 		    status & EHCI_QTD_ACTIVE ? 1 : 0,
@@ -1743,7 +1743,7 @@ ehci_dump_sqh(ehci_soft_qh_t *sqh)
 	USBHIST_LOGN(ehcidebug, 10,
 	    "        addr = 0x%02x  inact = %d  endpt = %d  eps = %d",
 	    EHCI_QH_GET_ADDR(endp), EHCI_QH_GET_INACT(endp),
-	    EHCI_QH_GET_ENDPT(endp),  EHCI_QH_GET_EPS(endp));
+	    EHCI_QH_GET_ENDPT(endp), EHCI_QH_GET_EPS(endp));
 	USBHIST_LOGN(ehcidebug, 10,
 	    "        dtc  = %d     hrecl = %d",
 	    EHCI_QH_GET_DTC(endp), EHCI_QH_GET_HRECL(endp), 0, 0);

Reply via email to