diff options
author | Paolo Bonzini | 2011-11-18 16:32:00 +0100 |
---|---|---|
committer | Kevin Wolf | 2011-11-22 10:33:30 +0100 |
commit | ce4e7e4661af433674f349ccdd5709b4b7a8b2fd (patch) | |
tree | 9a3708c7f2b195d95a3398df3452c36725158802 /hw/scsi.h | |
parent | virtio-blk: fix cross-endian config space (diff) | |
download | qemu-ce4e7e4661af433674f349ccdd5709b4b7a8b2fd.tar.gz qemu-ce4e7e4661af433674f349ccdd5709b4b7a8b2fd.tar.xz qemu-ce4e7e4661af433674f349ccdd5709b4b7a8b2fd.zip |
usb-msd: do not register twice in the boot order
USB mass storage devices are registered twice in the boot order.
To avoid having to keep the two paths in sync, pass the bootindex
property down to the scsi-disk device and let it register itself.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'hw/scsi.h')
-rw-r--r-- | hw/scsi.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -128,7 +128,7 @@ static inline SCSIBus *scsi_bus_from_device(SCSIDevice *d) } SCSIDevice *scsi_bus_legacy_add_drive(SCSIBus *bus, BlockDriverState *bdrv, - int unit, bool removable); + int unit, bool removable, int bootindex); int scsi_bus_legacy_handle_cmdline(SCSIBus *bus); /* |