diff options
Diffstat (limited to 'drivers/scsi/pmcraid.c')
| -rw-r--r-- | drivers/scsi/pmcraid.c | 5 | 
1 files changed, 2 insertions, 3 deletions
| diff --git a/drivers/scsi/pmcraid.c b/drivers/scsi/pmcraid.c index 88046a793767..928532180d32 100644 --- a/drivers/scsi/pmcraid.c +++ b/drivers/scsi/pmcraid.c @@ -3221,8 +3221,8 @@ static struct pmcraid_sglist *pmcraid_alloc_sglist(int buflen)  		return NULL;  	sglist->order = order; -	sgl_alloc_order(buflen, order, false, -			GFP_KERNEL | GFP_DMA | __GFP_ZERO, &sglist->num_sg); +	sgl_alloc_order(buflen, order, false, GFP_KERNEL | __GFP_ZERO, +			&sglist->num_sg);  	return sglist;  } @@ -3302,7 +3302,6 @@ static int pmcraid_copy_sglist(  /**   * pmcraid_queuecommand_lck - Queue a mid-layer request   * @scsi_cmd: scsi command struct - * @done: done function   *   * This function queues a request generated by the mid-layer. Midlayer calls   * this routine within host->lock. Some of the functions called by queuecommand |