Module Name: src Committed By: skrll Date: Tue Mar 8 21:16:27 UTC 2016
Modified Files: src/sys/dev/usb [nick-nhusb]: usb_subr.c Log Message: Remove "\n" from DPRINTF - it is not required. To generate a diff of this commit: cvs rdiff -u -r1.198.2.24 -r1.198.2.25 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.2.24 src/sys/dev/usb/usb_subr.c:1.198.2.25 --- src/sys/dev/usb/usb_subr.c:1.198.2.24 Sat Feb 6 08:06:17 2016 +++ src/sys/dev/usb/usb_subr.c Tue Mar 8 21:16:27 2016 @@ -1,4 +1,4 @@ -/* $NetBSD: usb_subr.c,v 1.198.2.24 2016/02/06 08:06:17 skrll Exp $ */ +/* $NetBSD: usb_subr.c,v 1.198.2.25 2016/03/08 21:16:27 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.2.24 2016/02/06 08:06:17 skrll Exp $"); +__KERNEL_RCSID(0, "$NetBSD: usb_subr.c,v 1.198.2.25 2016/03/08 21:16:27 skrll Exp $"); #ifdef _KERNEL_OPT #include "opt_compat_netbsd.h" @@ -960,7 +960,7 @@ usbd_attachinterfaces(device_t parent, s uiaa.uiaa_ifaceno = ifaces[i]->ui_idesc->bInterfaceNumber; DPRINTF("searching for interface %d...", i, 0, 0, 0); - DPRINTF("class %x subclass %x proto %x ifaceno %d\n", + DPRINTF("class %x subclass %x proto %x ifaceno %d", uiaa.uiaa_class, uiaa.uiaa_subclass, uiaa.uiaa_proto, uiaa.uiaa_ifaceno); ilocs[USBIFIFCF_INTERFACE] = uiaa.uiaa_ifaceno;