diff options
author | Bart Van Assche <bvanassche@acm.org> | 2013-06-25 11:27:22 -0400 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2013-07-08 12:24:43 -0400 |
commit | 090fc2e2cf6a2763f609af6f128a812d5051d935 (patch) | |
tree | 4d28e73f715742e03940df6ab4d30d73d9596477 /drivers/scsi/qla2xxx/qla_bsg.c | |
parent | 1f8deefecdda5a43961dd8062a6cab27e20af5e9 (diff) |
[SCSI] qla2xxx: Clean up qla24xx_iidma()
Remove dead code and simplify a pointer computation.
Signed-off-by: Bart Van Assche <bvanassche@acm.org>
Signed-off-by: Saurav Kashyap <saurav.kashyap@qlogic.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/scsi/qla2xxx/qla_bsg.c')
-rw-r--r-- | drivers/scsi/qla2xxx/qla_bsg.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/drivers/scsi/qla2xxx/qla_bsg.c b/drivers/scsi/qla2xxx/qla_bsg.c index 5ba0cc1f982b..9a30b696d758 100644 --- a/drivers/scsi/qla2xxx/qla_bsg.c +++ b/drivers/scsi/qla2xxx/qla_bsg.c | |||
@@ -1282,14 +1282,7 @@ qla24xx_iidma(struct fc_bsg_job *bsg_job) | |||
1282 | return -EINVAL; | 1282 | return -EINVAL; |
1283 | } | 1283 | } |
1284 | 1284 | ||
1285 | port_param = (struct qla_port_param *)((char *)bsg_job->request + | 1285 | port_param = (void *)bsg_job->request + sizeof(struct fc_bsg_request); |
1286 | sizeof(struct fc_bsg_request)); | ||
1287 | if (!port_param) { | ||
1288 | ql_log(ql_log_warn, vha, 0x7047, | ||
1289 | "port_param header not provided.\n"); | ||
1290 | return -EINVAL; | ||
1291 | } | ||
1292 | |||
1293 | if (port_param->fc_scsi_addr.dest_type != EXT_DEF_TYPE_WWPN) { | 1286 | if (port_param->fc_scsi_addr.dest_type != EXT_DEF_TYPE_WWPN) { |
1294 | ql_log(ql_log_warn, vha, 0x7048, | 1287 | ql_log(ql_log_warn, vha, 0x7048, |
1295 | "Invalid destination type.\n"); | 1288 | "Invalid destination type.\n"); |