aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Cox <[email protected]>2012-12-18 14:21:30 -0800
committerLinus Torvalds <[email protected]>2012-12-18 15:02:12 -0800
commit3012d60b39761b0bf73e3be677d2f8e424f0b294 (patch)
tree2db37054681113058b4e369dce36f41be8c85020
parentd95bfe464bae35daadaa46477e3ef984747abfff (diff)
drivers/message/fusion/mptscsih.c: missing break
This happens to do the right thing in all cases on fibre channel but not on other media types Signed-off-by: Alan Cox <[email protected]> Cc: James Bottomley <[email protected]> Cc: Nagalakshmi Nandigama <[email protected]> Cc: Kashyap Desai <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r--drivers/message/fusion/mptscsih.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/message/fusion/mptscsih.c b/drivers/message/fusion/mptscsih.c
index 0c3ced70707b..164afa71bba7 100644
--- a/drivers/message/fusion/mptscsih.c
+++ b/drivers/message/fusion/mptscsih.c
@@ -792,6 +792,7 @@ mptscsih_io_done(MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf, MPT_FRAME_HDR *mr)
* than an unsolicited DID_ABORT.
*/
sc->result = DID_RESET << 16;
+ break;
case MPI_IOCSTATUS_SCSI_EXT_TERMINATED: /* 0x004C */
if (ioc->bus_type == FC)