diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-06-26 21:00:51 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-06-26 21:00:51 +0000 |
commit | 1f6e24e73ccdca64864da009a21f5b7051d200a1 (patch) | |
tree | 864894ca89ebfaaa5ae6bc2332a588ae331ea554 /hw/usb-hub.c | |
parent | 3e382bc84ce93df505b48fc4e305fcc5f4ac4567 (diff) |
display device identifier string for user with info usb (Lonnie Mendez)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2029 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/usb-hub.c')
-rw-r--r-- | hw/usb-hub.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/usb-hub.c b/hw/usb-hub.c index c69d69cc8..2eba905ff 100644 --- a/hw/usb-hub.c +++ b/hw/usb-hub.c @@ -544,6 +544,8 @@ USBDevice *usb_hub_init(int nb_ports) s->dev.handle_control = usb_hub_handle_control; s->dev.handle_data = usb_hub_handle_data; + pstrcpy(s->dev.devname, sizeof(s->dev.devname), "QEMU USB Hub"); + s->nb_ports = nb_ports; for(i = 0; i < s->nb_ports; i++) { port = &s->ports[i]; |