mirror of https://github.com/xemu-project/xemu.git
scsi: Remove superfluous breaks
Remove superfluous breaks, as there is a "return" before them. Signed-off-by: Liao Pingfang <liao.pingfang@zte.com.cn> Signed-off-by: Yi Wang <wang.yi59@zte.com.cn> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Message-Id: <1594631062-36341-1-git-send-email-wang.yi59@zte.com.cn> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
This commit is contained in:
parent
3ca5ab7cd2
commit
2e8f68eaef
|
@ -32,17 +32,13 @@ uint32_t scsi_cdb_xfer(uint8_t *buf)
|
||||||
switch (buf[0] >> 5) {
|
switch (buf[0] >> 5) {
|
||||||
case 0:
|
case 0:
|
||||||
return buf[4];
|
return buf[4];
|
||||||
break;
|
|
||||||
case 1:
|
case 1:
|
||||||
case 2:
|
case 2:
|
||||||
return lduw_be_p(&buf[7]);
|
return lduw_be_p(&buf[7]);
|
||||||
break;
|
|
||||||
case 4:
|
case 4:
|
||||||
return ldl_be_p(&buf[10]) & 0xffffffffULL;
|
return ldl_be_p(&buf[10]) & 0xffffffffULL;
|
||||||
break;
|
|
||||||
case 5:
|
case 5:
|
||||||
return ldl_be_p(&buf[6]) & 0xffffffffULL;
|
return ldl_be_p(&buf[6]) & 0xffffffffULL;
|
||||||
break;
|
|
||||||
default:
|
default:
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue