diff mbox

[v2] hw/usb/bus.c: print device ID when 'info usb' used

Message ID 2D49C648-0BD3-4A04-ABD1-15E3C584F737@gmail.com
State New
Headers show

Commit Message

Programmingkid Aug. 28, 2015, 6:54 p.m. UTC
Print the ID (if available) of each device when 'info usb' is used in the monitor.

Signed-off-by: John Arbuckle <programmingkidx@gmail.com>

---
Added conditional code that only prints the ID if it is available.

 hw/usb/bus.c |   14 +++++++++++---
 1 files changed, 11 insertions(+), 3 deletions(-)
diff mbox

Patch

diff --git a/hw/usb/bus.c b/hw/usb/bus.c
index 5f39e1e..6da6695 100644
--- a/hw/usb/bus.c
+++ b/hw/usb/bus.c
@@ -655,9 +655,17 @@  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);
+            if (dev->qdev.id) {  /* Print ID if available */
+                monitor_printf(mon, "  Device %d.%d, Port %s, Speed %s Mb/s, "
+                                    "Product %s, ID %s\n",
+                      bus->busnr, dev->addr, port->path, usb_speed(dev->speed),
+                      dev->product_desc, dev->qdev.id);
+            } else {
+                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);
+            }
         }
     }
 }