diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2015-10-06 15:31:21 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2015-10-20 09:15:23 +0200 |
commit | 974826f0ab1efc96cd2f61337ee75bda5cde1c77 (patch) | |
tree | c26e8e2807d8880b4efd9e8f17dadc1eacdabfb9 | |
parent | e206ddfb57e2595cc43ad3667b3becc6bd2ef62d (diff) | |
download | qemu-974826f0ab1efc96cd2f61337ee75bda5cde1c77.zip qemu-974826f0ab1efc96cd2f61337ee75bda5cde1c77.tar.gz qemu-974826f0ab1efc96cd2f61337ee75bda5cde1c77.tar.bz2 |
usb: print device id in "info usb" monitor command
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
-rw-r--r-- | hw/usb/bus.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/hw/usb/bus.c b/hw/usb/bus.c index 5f39e1e..ee6b43a 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 ?: ""); } } } |