diff options
author | Anthony Liguori | 2011-12-08 21:56:53 +0100 |
---|---|---|
committer | Anthony Liguori | 2012-02-03 17:41:03 +0100 |
commit | ba02430f1a681173cff5336c626d6edc5ea268db (patch) | |
tree | 74913357d1d97791c10e8f94d95ec36986a97168 /hw/usb-msd.c | |
parent | usb-hid: simplify class initialization a bit (diff) | |
download | qemu-ba02430f1a681173cff5336c626d6edc5ea268db.tar.gz qemu-ba02430f1a681173cff5336c626d6edc5ea268db.tar.xz qemu-ba02430f1a681173cff5336c626d6edc5ea268db.zip |
usb: separate out legacy usb registration from type registration
Type registeration is going to get turned into a QOM call so decouple the
legacy support.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/usb-msd.c')
-rw-r--r-- | hw/usb-msd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/usb-msd.c b/hw/usb-msd.c index ceb01e0eef..19d0d7b8c8 100644 --- a/hw/usb-msd.c +++ b/hw/usb-msd.c @@ -667,6 +667,7 @@ static struct DeviceInfo msd_info = { static void usb_msd_register_devices(void) { - usb_qdev_register(&msd_info, "disk", usb_msd_init); + usb_qdev_register(&msd_info); + usb_legacy_register("usb-storage", "disk", usb_msd_init); } device_init(usb_msd_register_devices) |