提交 0d380648 编写于 作者: A aliguori

husb: Fixup printfs and stuff based on the review comments (Max Krasnyansky)

Addressing Anthony's comments regarding printf and stuff.

Anthony, if you you want I can fold this commit and resend
the original patch.
Signed-off-by: NMax Krasnyansky <maxk@kernel.org>
Signed-off-by: NAnthonY Liguori <aliguori@us.ibm.com>



git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5053 c046a42c-6fe2-441c-8c8c-71466251a162
上级 24772c1e
...@@ -272,7 +272,7 @@ static int usb_host_update_interfaces(USBHostDevice *dev, int configuration) ...@@ -272,7 +272,7 @@ static int usb_host_update_interfaces(USBHostDevice *dev, int configuration)
} }
if (i >= dev->descr_len) { if (i >= dev->descr_len) {
printf("husb: update iface failed. no matching configuration\n"); fprintf(stderr, "husb: update iface failed. no matching configuration\n");
goto fail; goto fail;
} }
nb_interfaces = dev->descr[i + 4]; nb_interfaces = dev->descr[i + 4];
...@@ -815,9 +815,6 @@ static int usb_host_auto_scan(void *opaque, int bus_num, int addr, ...@@ -815,9 +815,6 @@ static int usb_host_auto_scan(void *opaque, int bus_num, int addr,
return 0; return 0;
for (f = usb_auto_filter; f; f = f->next) { for (f = usb_auto_filter; f; f = f->next) {
// printf("Auto match: bus_num %d addr %d vid %d pid %d\n",
// bus_num, addr, vendor_id, product_id);
if (f->bus_num >= 0 && f->bus_num != bus_num) if (f->bus_num >= 0 && f->bus_num != bus_num)
continue; continue;
...@@ -860,8 +857,8 @@ static void usb_host_auto_add(int bus_num, int addr, int vendor_id, int product_ ...@@ -860,8 +857,8 @@ static void usb_host_auto_add(int bus_num, int addr, int vendor_id, int product_
{ {
struct USBAutoFilter *f = qemu_mallocz(sizeof(*f)); struct USBAutoFilter *f = qemu_mallocz(sizeof(*f));
if (!f) { if (!f) {
printf("husb: failed to allocate auto filter\n"); fprintf(stderr, "husb: failed to allocate auto filter\n");
return; return;
} }
f->bus_num = bus_num; f->bus_num = bus_num;
...@@ -878,7 +875,7 @@ static void usb_host_auto_add(int bus_num, int addr, int vendor_id, int product_ ...@@ -878,7 +875,7 @@ static void usb_host_auto_add(int bus_num, int addr, int vendor_id, int product_
*/ */
usb_auto_timer = qemu_new_timer(rt_clock, usb_host_auto_timer, NULL); usb_auto_timer = qemu_new_timer(rt_clock, usb_host_auto_timer, NULL);
if (!usb_auto_timer) { if (!usb_auto_timer) {
printf("husb: failed to allocate timer\n"); fprintf(stderr, "husb: failed to allocate auto scan timer\n");
qemu_free(f); qemu_free(f);
return; return;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册