aboutsummaryrefslogtreecommitdiff
path: root/hw/usb-net.c
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 07:59:38 -0600
commit063846984ce7eb1c1ddce6dda39b662c64a80dc0 (patch)
tree3af77f3d27bf7a7400ba8919a8a03af157ca25ff /hw/usb-net.c
parent0fe6d12e0bc752c29a93ac83a274e3650d457069 (diff)
downloadqemu-063846984ce7eb1c1ddce6dda39b662c64a80dc0.zip
qemu-063846984ce7eb1c1ddce6dda39b662c64a80dc0.tar.gz
qemu-063846984ce7eb1c1ddce6dda39b662c64a80dc0.tar.bz2
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>
Diffstat (limited to 'hw/usb-net.c')
-rw-r--r--hw/usb-net.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/usb-net.c b/hw/usb-net.c
index 2556e05..3dd05e3 100644
--- a/hw/usb-net.c
+++ b/hw/usb-net.c
@@ -1487,6 +1487,7 @@ USBDevice *usb_net_init(NICInfo *nd)
}
static struct USBDeviceInfo net_info = {
+ .product_desc = "QEMU USB Network Interface",
.qdev.name = "QEMU USB Network Interface",
.qdev.size = sizeof(USBNetState),
.init = usb_net_initfn,