diff options
author | Markus Armbruster | 2009-12-09 17:07:51 +0100 |
---|---|---|
committer | Anthony Liguori | 2009-12-12 14:59:38 +0100 |
commit | 0fe6d12e0bc752c29a93ac83a274e3650d457069 (patch) | |
tree | c64224edae0e3225075045fef03d60caa6bc1600 /hw/usb.h | |
parent | fix rtc-td-hack on host without high-res timers (diff) | |
download | qemu-0fe6d12e0bc752c29a93ac83a274e3650d457069.tar.gz qemu-0fe6d12e0bc752c29a93ac83a274e3650d457069.tar.xz qemu-0fe6d12e0bc752c29a93ac83a274e3650d457069.zip |
qdev: Rename USBDevice member devname to product_desc
It's not a device name, it's the USB product description string.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/usb.h')
-rw-r--r-- | hw/usb.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -132,7 +132,7 @@ struct USBDevice { int speed; uint8_t addr; - char devname[32]; + char product_desc[32]; int auto_attach; int attached; |