diff options
| author | skrll <skrll@NetBSD.org> | 2015-03-27 07:28:56 +0000 |
|---|---|---|
| committer | skrll <skrll@NetBSD.org> | 2015-03-27 07:28:56 +0000 |
| commit | f7e28168b9dbfdbda07b495575bc678f2b7aae8a (patch) | |
| tree | dff10ff53aef757e5d8fcf562fde64253e2ea16e /sys | |
| parent | 554b753c947dc497b3bfde2884ade7f0d7b28565 (diff) | |
Remove '\n' in panic message.
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/dev/usb/usb_subr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/usb_subr.c b/sys/dev/usb/usb_subr.c index 91285b36b54..f349f0b2e05 100644 --- a/sys/dev/usb/usb_subr.c +++ b/sys/dev/usb/usb_subr.c @@ -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_bus_handle bus, int depth, 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 { |
