rt2x00pci: do not use GFP_DMA

Signed-off-by: John W. Linville <linville@tuxdriver.com>
Acked-by: Ivo van Doorn <IvDoorn@gmail.com>
This commit is contained in:
John W. Linville 2010-10-25 10:33:07 -04:00
parent 26f94dc264
commit b9237578f8

View file

@ -105,7 +105,7 @@ static int rt2x00pci_alloc_queue_dma(struct rt2x00_dev *rt2x00dev,
*/
addr = dma_alloc_coherent(rt2x00dev->dev,
queue->limit * queue->desc_size,
&dma, GFP_KERNEL | GFP_DMA);
&dma, GFP_KERNEL);
if (!addr)
return -ENOMEM;