Module Name: src
Committed By: jmcneill
Date: Sun Aug 23 19:03:18 UTC 2009
Modified Files:
src/sys/dev/usb: umass.c
Log Message:
Print devinfo on the same line as locators, and make the transfer mode
output aprint_verbose
To generate a diff of this commit:
cvs rdiff -u -r1.131 -r1.132 src/sys/dev/usb/umass.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/umass.c
diff -u src/sys/dev/usb/umass.c:1.131 src/sys/dev/usb/umass.c:1.132
--- src/sys/dev/usb/umass.c:1.131 Tue Mar 17 19:12:17 2009
+++ src/sys/dev/usb/umass.c Sun Aug 23 19:03:18 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: umass.c,v 1.131 2009/03/17 19:12:17 dyoung Exp $ */
+/* $NetBSD: umass.c,v 1.132 2009/08/23 19:03:18 jmcneill Exp $ */
/*
* Copyright (c) 2003 The NetBSD Foundation, Inc.
@@ -124,7 +124,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: umass.c,v 1.131 2009/03/17 19:12:17 dyoung Exp $");
+__KERNEL_RCSID(0, "$NetBSD: umass.c,v 1.132 2009/08/23 19:03:18 jmcneill Exp $");
#include "atapibus.h"
#include "scsibus.h"
@@ -312,8 +312,7 @@
devinfop = usbd_devinfo_alloc(uaa->device, 0);
aprint_naive("\n");
- aprint_normal("\n");
- aprint_normal_dev(self, "%s\n", devinfop);
+ aprint_normal(": %s\n", devinfop);
usbd_devinfo_free(devinfop);
sc->sc_udev = uaa->device;
@@ -418,7 +417,7 @@
break;
}
- aprint_normal_dev(self, "using %s over %s\n", sCommand, sWire);
+ aprint_verbose_dev(self, "using %s over %s\n", sCommand, sWire);
if (quirk != NULL && quirk->uq_init != NULL) {
err = (*quirk->uq_init)(sc);