summary refs log tree commit diff stats
path: root/hw/usb-net.c
diff options
context:
space:
mode:
authorGleb Natapov <gleb@redhat.com>2010-12-08 13:34:54 +0200
committerBlue Swirl <blauwirbel@gmail.com>2010-12-11 21:27:44 +0000
commit779206de677533616ec3558bae89ea06fb91fc84 (patch)
treef85efe1ffc71bf96366aa486aace956a7cc2bb6a /hw/usb-net.c
parent1b3cba6e91ab55a158e49bc5398fd76e67c695a8 (diff)
downloadfocaccia-qemu-779206de677533616ec3558bae89ea06fb91fc84.tar.gz
focaccia-qemu-779206de677533616ec3558bae89ea06fb91fc84.zip
Introduce fw_name field to DeviceInfo structure.
Add "fw_name" to DeviceInfo to use in device path building. In
contrast to "name" "fw_name" should refer to functionality device
provides instead of particular device model like "name" does.

Signed-off-by: Gleb Natapov <gleb@redhat.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.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 58c672f426..f6bed2184e 100644
--- a/hw/usb-net.c
+++ b/hw/usb-net.c
@@ -1496,6 +1496,7 @@ static USBDevice *usb_net_init(const char *cmdline)
 static struct USBDeviceInfo net_info = {
     .product_desc   = "QEMU USB Network Interface",
     .qdev.name      = "usb-net",
+    .qdev.fw_name    = "network",
     .qdev.size      = sizeof(USBNetState),
     .init           = usb_net_initfn,
     .handle_packet  = usb_generic_handle_packet,