From 832a226b62c6bf75c57ec3ae4d6964923d2aabcd Mon Sep 17 00:00:00 2001 From: Blue Swirl Date: Mon, 30 Jul 2012 17:46:06 +0000 Subject: [PATCH] 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 --- hw/scsi-bus.c | 1 - 1 file changed, 1 deletion(-) 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",