Module Name:    src
Committed By:   skrll
Date:           Wed Dec 24 14:18:32 UTC 2014

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

Log Message:
No need for '\n' in USBHIST_LOG message.


To generate a diff of this commit:
cvs rdiff -u -r1.234.2.22 -r1.234.2.23 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.22 src/sys/dev/usb/ehci.c:1.234.2.23
--- src/sys/dev/usb/ehci.c:1.234.2.22	Wed Dec 24 14:13:32 2014
+++ src/sys/dev/usb/ehci.c	Wed Dec 24 14:18:32 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: ehci.c,v 1.234.2.22 2014/12/24 14:13:32 skrll Exp $ */
+/*	$NetBSD: ehci.c,v 1.234.2.23 2014/12/24 14:18:32 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.22 2014/12/24 14:13:32 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.234.2.23 2014/12/24 14:18:32 skrll Exp $");
 
 #include "ohci.h"
 #include "uhci.h"
@@ -4139,7 +4139,7 @@ ehci_device_fs_isoc_start(usbd_xfer_hand
 	i = epipe->pipe.up_endpoint->ue_edesc->bInterval;
 	if (i > 16 || i == 0) {
 		/* Spec page 271 says intervals > 16 are invalid */
-		USBHIST_LOG(ehcidebug, "bInterval %d invalid\n", i, 0, 0, 0);
+		USBHIST_LOG(ehcidebug, "bInterval %d invalid", i, 0, 0, 0);
 
 		return USBD_INVAL;
 	}

Reply via email to