9
0
Fork 0

usb: Turn some printf into pr_*

So that these messages can be suppressed if necessary.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2013-09-24 22:46:34 +02:00
parent 4a22305307
commit 61d6a8485d
1 changed files with 3 additions and 3 deletions

View File

@ -74,7 +74,7 @@ static LIST_HEAD(usb_device_list);
static void print_usb_device(struct usb_device *dev)
{
printf("Bus %03d Device %03d: ID %04x:%04x %s\n",
pr_info("Bus %03d Device %03d: ID %04x:%04x %s\n",
dev->host->busnum, dev->devnum,
dev->descriptor->idVendor,
dev->descriptor->idProduct,
@ -529,7 +529,7 @@ void usb_rescan(int force)
struct usb_host *host;
int ret;
printf("USB: scanning bus for devices...\n");
pr_info("USB: scanning bus for devices...\n");
dev_index = 0;
list_for_each_entry(host, &host_list, list) {
@ -538,7 +538,7 @@ void usb_rescan(int force)
continue;
}
printf("%d USB Device(s) found\n", dev_index);
pr_info("%d USB Device(s) found\n", dev_index);
}
/*