diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-05-25 23:58:51 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-05-25 23:58:51 +0000 |
commit | 2e5d83bbef5a539f22970c2bccd19b125d82aab0 (patch) | |
tree | f733c22c2f4d19bd0a00f373b919e2e3ada86241 /hw/usb-hub.c | |
parent | e6f3e5e016cc7473bc008f341d8e22bd989e03cb (diff) |
Rearrange SCSI disk emulation code.
Add USB mass storage device emulation.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1940 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/usb-hub.c')
-rw-r--r-- | hw/usb-hub.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/hw/usb-hub.c b/hw/usb-hub.c index e2cb283ef9..c69d69cc84 100644 --- a/hw/usb-hub.c +++ b/hw/usb-hub.c @@ -199,9 +199,11 @@ static void usb_hub_attach(USBPort *port1, USBDevice *dev) } } -static void usb_hub_handle_reset(USBDevice *dev) +static void usb_hub_handle_reset(USBDevice *dev, int destroy) { /* XXX: do it */ + if (destroy) + qemu_free(dev); } static int usb_hub_handle_control(USBDevice *dev, int request, int value, |