diff options
author | Markus Armbruster <armbru@redhat.com> | 2009-12-09 17:07:51 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-12-12 07:59:38 -0600 |
commit | 0fe6d12e0bc752c29a93ac83a274e3650d457069 (patch) | |
tree | c64224edae0e3225075045fef03d60caa6bc1600 /hw/usb.h | |
parent | ba32edab7fdab0e74b54696942b4127d26861cf6 (diff) |
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; |