qla2xxx: Avoid using variable-length arrays
This patch does not change any functionality but avoids that sparse complains about using variable-length arrays. Signed-off-by: Bart Van Assche <bart.vanassche@sandisk.com> Acked-by: Himanshu Madhani <himanshu.madhani@cavium.com> Cc: Quinn Tran <quinn.tran@cavium.com> Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
This commit is contained in:
parent
25ff6af105
commit
2fdbc65eae
@ -4272,8 +4272,8 @@ struct scsi_qla_host *qla2x00_create_host(struct scsi_host_template *sht,
|
||||
spin_lock_init(&vha->cmd_list_lock);
|
||||
init_waitqueue_head(&vha->fcport_waitQ);
|
||||
|
||||
vha->gnl.size =
|
||||
sizeof(struct get_name_list_extended[ha->max_loop_id+1]);
|
||||
vha->gnl.size = sizeof(struct get_name_list_extended) *
|
||||
(ha->max_loop_id + 1);
|
||||
vha->gnl.l = dma_alloc_coherent(&ha->pdev->dev,
|
||||
vha->gnl.size, &vha->gnl.ldma, GFP_KERNEL);
|
||||
if (!vha->gnl.l) {
|
||||
|
Loading…
Reference in New Issue
Block a user