summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2004-10-18 11:26:53 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2004-10-18 11:26:53 +0000
commit14fea1988e09f17065d1c6c38261f5611a257aec (patch)
tree224ee7274044f3e55f2062672d78a24c4b6ef86b
parent6a4ecbc74415ac13a96f7440465c7e81b1f0fad0 (diff)
reduce linecount in dmesg
-rw-r--r--sys/dev/usb/uaudio.c9
1 files 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));