From: Gerd Hoffmann Date: Tue, 6 Oct 2015 13:31:21 +0000 (+0200) Subject: usb: print device id in "info usb" monitor command X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=974826f0ab1efc96cd2f61337ee75bda5cde1c77;p=qemu.git usb: print device id in "info usb" monitor command Signed-off-by: Gerd Hoffmann --- diff --git a/hw/usb/bus.c b/hw/usb/bus.c index 5f39e1e3ac..ee6b43abc6 100644 --- a/hw/usb/bus.c +++ b/hw/usb/bus.c @@ -655,9 +655,12 @@ void hmp_info_usb(Monitor *mon, const QDict *qdict) dev = port->dev; if (!dev) continue; - monitor_printf(mon, " Device %d.%d, Port %s, Speed %s Mb/s, Product %s\n", - bus->busnr, dev->addr, port->path, usb_speed(dev->speed), - dev->product_desc); + monitor_printf(mon, " Device %d.%d, Port %s, Speed %s Mb/s, " + "Product %s%s%s\n", + bus->busnr, dev->addr, port->path, + usb_speed(dev->speed), dev->product_desc, + dev->qdev.id ? ", ID: " : "", + dev->qdev.id ?: ""); } } }