From: Blue Swirl Date: Mon, 30 Jul 2012 17:46:06 +0000 (+0000) Subject: scsi-bus: remove overlapping entry X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=832a226b62c6bf75c57ec3ae4d6964923d2aabcd;p=qmiga%2Fqemu.git scsi-bus: remove overlapping entry LOAD_UNLOAD and START_STOP have same value, so the table entry is initialized twice. Spotted by Clang compiler. Remove LOAD_UNLOAD entry since START_STOP entry already represents both. Reviewed-by: Markus Armbruster Signed-off-by: Blue Swirl --- diff --git a/hw/scsi-bus.c b/hw/scsi-bus.c index 6120cc83c1..b8a857d145 100644 --- a/hw/scsi-bus.c +++ b/hw/scsi-bus.c @@ -1437,7 +1437,6 @@ static const char *scsi_command_name(uint8_t cmd) [ ATA_PASSTHROUGH_12 ] = "BLANK/ATA_PASSTHROUGH_12", [ MOVE_MEDIUM ] = "MOVE_MEDIUM", [ EXCHANGE_MEDIUM ] = "EXCHANGE MEDIUM", - [ LOAD_UNLOAD ] = "LOAD_UNLOAD", [ READ_12 ] = "READ_12", [ WRITE_12 ] = "WRITE_12", [ ERASE_12 ] = "ERASE_12/GET_PERFORMANCE",