From 14fea1988e09f17065d1c6c38261f5611a257aec Mon Sep 17 00:00:00 2001 From: Theo de Raadt Date: Mon, 18 Oct 2004 11:26:53 +0000 Subject: reduce linecount in dmesg --- sys/dev/usb/uaudio.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/sys/dev/usb/uaudio.c b/sys/dev/usb/uaudio.c index b43b5dab7a5..e2837ea2544 100644 --- a/sys/dev/usb/uaudio.c +++ b/sys/dev/usb/uaudio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uaudio.c,v 1.20 2004/08/30 03:06:48 drahn Exp $ */ +/* $OpenBSD: uaudio.c,v 1.21 2004/10/18 11:26:52 deraadt Exp $ */ /* $NetBSD: uaudio.c,v 1.67 2003/05/03 18:11:41 wiz Exp $ */ /* @@ -411,7 +411,7 @@ USB_ATTACH(uaudio) } } - printf("%s: audio rev %d.%02x\n", USBDEVNAME(sc->sc_dev), + printf("%s: audio rev %d.%02x", USBDEVNAME(sc->sc_dev), sc->sc_audio_rev >> 8, sc->sc_audio_rev & 0xff); sc->sc_playchan.sc = sc->sc_recchan.sc = sc; @@ -424,8 +424,9 @@ USB_ATTACH(uaudio) #if defined(__NetBSD__) && !defined(UAUDIO_DEBUG) if (bootverbose) #endif - printf("%s: %d mixer controls\n", USBDEVNAME(sc->sc_dev), - sc->sc_nctls); + printf(", %d mixer controls", sc->sc_nctls); + + printf("\n"); usbd_add_drv_event(USB_EVENT_DRIVER_ATTACH, sc->sc_udev, USBDEV(sc->sc_dev)); -- cgit v1.2.3