diff options
author | Andrew Vasquez <andrew.vasquez@qlogic.com> | 2012-08-22 18:21:19 (GMT) |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2012-09-24 08:10:51 (GMT) |
commit | c74d88a46865a9c4f14a40ec1ae88e34f38da7a7 (patch) | |
tree | a2bc77d17fa6a0f76d8127f5a7b27bd27589060f /drivers/scsi/qla2xxx | |
parent | 58570ac5355f95a2554dee9ca36b0f9c3d401fb5 (diff) | |
download | linux-c74d88a46865a9c4f14a40ec1ae88e34f38da7a7.tar.xz |
[SCSI] qla2xxx: Fail initialization if unable to load RISC code.
Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com>
Signed-off-by: Chad Dupuis <chad.dupuis@qlogic.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/scsi/qla2xxx')
-rw-r--r-- | drivers/scsi/qla2xxx/qla_init.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/scsi/qla2xxx/qla_init.c b/drivers/scsi/qla2xxx/qla_init.c index 9b5e392..f4bbf1c 100644 --- a/drivers/scsi/qla2xxx/qla_init.c +++ b/drivers/scsi/qla2xxx/qla_init.c @@ -1561,7 +1561,8 @@ enable_82xx_npiv: "ISP Firmware failed checksum.\n"); goto failed; } - } + } else + goto failed; if (!IS_FWI2_CAPABLE(ha) && !IS_QLA2100(ha) && !IS_QLA2200(ha)) { /* Enable proper parity. */ |