diff options
author | Gleb Natapov <gleb@redhat.com> | 2010-12-08 13:34:54 +0200 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2010-12-11 21:27:44 +0000 |
commit | 779206de677533616ec3558bae89ea06fb91fc84 (patch) | |
tree | f85efe1ffc71bf96366aa486aace956a7cc2bb6a /hw/usb-hub.c | |
parent | 1b3cba6e91ab55a158e49bc5398fd76e67c695a8 (diff) |
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-hub.c')
-rw-r--r-- | hw/usb-hub.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/usb-hub.c b/hw/usb-hub.c index 2a1edfc956..8e3a96b816 100644 --- a/hw/usb-hub.c +++ b/hw/usb-hub.c @@ -545,6 +545,7 @@ static int usb_hub_initfn(USBDevice *dev) static struct USBDeviceInfo hub_info = { .product_desc = "QEMU USB Hub", .qdev.name = "usb-hub", + .qdev.fw_name = "hub", .qdev.size = sizeof(USBHubState), .init = usb_hub_initfn, .handle_packet = usb_hub_handle_packet, |