Commit 39d0c6e7 authored by Liu Shixin's avatar Liu Shixin Committed by Martin K. Petersen
Browse files

scsi: fnic: Simplify the return expression of vnic_wq_copy_alloc()

parent 4b217e01
Loading
Loading
Loading
Loading
+1 −7
Original line number Diff line number Diff line
@@ -79,8 +79,6 @@ int vnic_wq_copy_alloc(struct vnic_dev *vdev, struct vnic_wq_copy *wq,
		       unsigned int index, unsigned int desc_count,
		       unsigned int desc_size)
{
	int err;

	wq->index = index;
	wq->vdev = vdev;
	wq->to_use_index = wq->to_clean_index = 0;
@@ -92,11 +90,7 @@ int vnic_wq_copy_alloc(struct vnic_dev *vdev, struct vnic_wq_copy *wq,

	vnic_wq_copy_disable(wq);

	err = vnic_dev_alloc_desc_ring(vdev, &wq->ring, desc_count, desc_size);
	if (err)
		return err;

	return 0;
	return vnic_dev_alloc_desc_ring(vdev, &wq->ring, desc_count, desc_size);
}

void vnic_wq_copy_init(struct vnic_wq_copy *wq, unsigned int cq_index,