summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2009-12-09 17:07:52 +0100
committerAnthony Liguori <aliguori@us.ibm.com>2009-12-12 08:17:28 -0600
commit5b6d0419d9a411d83a1078a146ee140482dcc02c (patch)
tree796339f8786c281c1556778d818b9a454ddf334f /usb-bsd.c
parentqdev: Rename USBDevice member devname to product_desc (diff)
downloadqemu-kvm-5b6d0419d9a411d83a1078a146ee140482dcc02c.tar.gz
qemu-kvm-5b6d0419d9a411d83a1078a146ee140482dcc02c.tar.bz2
qemu-kvm-5b6d0419d9a411d83a1078a146ee140482dcc02c.zip
qdev: Separate USB product description from qdev name
Using the qdev name for the product description makes for inconvenient qdev names. Put the product description in new USBDeviceInfo member product_desc. Make usb_qdev_init() use it. No user or guest visible change, since the value is still the same. Signed-off-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> (cherry picked from commit 063846984ce7eb1c1ddce6dda39b662c64a80dc0)
Diffstat (limited to 'usb-bsd.c')
-rw-r--r--usb-bsd.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/usb-bsd.c b/usb-bsd.c
index a9987d116..e72d123f9 100644
--- a/usb-bsd.c
+++ b/usb-bsd.c
@@ -393,6 +393,7 @@ fail:
}
static struct USBDeviceInfo usb_host_dev_info = {
+ .product_desc = "USB Host Device",
.qdev.name = "USB Host Device",
.qdev.size = sizeof(USBHostDevice),
.init = usb_host_initfn,