Module Name: src
Committed By: skrll
Date: Fri Mar 27 07:28:56 UTC 2015
Modified Files:
src/sys/dev/usb: usb_subr.c
Log Message:
Remove '\n' in panic message.
To generate a diff of this commit:
cvs rdiff -u -r1.198 -r1.199 src/sys/dev/usb/usb_subr.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/usb_subr.c
diff -u src/sys/dev/usb/usb_subr.c:1.198 src/sys/dev/usb/usb_subr.c:1.199
--- src/sys/dev/usb/usb_subr.c:1.198 Sun Sep 21 14:30:22 2014
+++ src/sys/dev/usb/usb_subr.c Fri Mar 27 07:28:56 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: usb_subr.c,v 1.198 2014/09/21 14:30:22 christos Exp $ */
+/* $NetBSD: usb_subr.c,v 1.199 2015/03/27 07:28:56 skrll Exp $ */
/* $FreeBSD: src/sys/dev/usb/usb_subr.c,v 1.18 1999/11/17 22:33:47 n_hibma Exp $ */
/*
@@ -32,7 +32,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: usb_subr.c,v 1.198 2014/09/21 14:30:22 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: usb_subr.c,v 1.199 2015/03/27 07:28:56 skrll Exp $");
#ifdef _KERNEL_OPT
#include "opt_compat_netbsd.h"
@@ -1126,7 +1126,7 @@ usbd_new_device(device_t parent, usbd_bu
goto found;
}
}
- panic("usbd_new_device: cannot find HS port\n");
+ panic("usbd_new_device: cannot find HS port");
found:
DPRINTFN(1,("usbd_new_device: high speed port %d\n", p));
} else {