aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLiao Pingfang <[email protected]>2020-07-14 18:59:27 +0800
committerMartin K. Petersen <[email protected]>2020-07-24 22:09:55 -0400
commitb54dc46cbe7123e68e7cafe2ef2f5fca41603b4e (patch)
tree1c9d24d33501322d1ee8672ce25d8e2aeeea200e
parent8f38f8e0a30e1c33cdfc48eba2bd63ac2eae373a (diff)
scsi: imm: Remove superfluous breaks
Remove superfluous breaks, as there is a "return" before them. Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Liao Pingfang <[email protected]> Signed-off-by: Yi Wang <[email protected]> Signed-off-by: Martin K. Petersen <[email protected]>
-rw-r--r--drivers/scsi/imm.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/scsi/imm.c b/drivers/scsi/imm.c
index 2519fb7aee51..1459b1467027 100644
--- a/drivers/scsi/imm.c
+++ b/drivers/scsi/imm.c
@@ -903,7 +903,6 @@ static int imm_engine(imm_struct *dev, struct scsi_cmnd *cmd)
w_ctr(ppb, 0x4);
}
return 0; /* Finished */
- break;
default:
printk("imm: Invalid scsi phase\n");
@@ -969,10 +968,8 @@ static int imm_abort(struct scsi_cmnd *cmd)
case 1: /* Have not connected to interface */
dev->cur_cmd = NULL; /* Forget the problem */
return SUCCESS;
- break;
default: /* SCSI command sent, can not abort */
return FAILED;
- break;
}
}