Commit 5bc5ca85 authored by Alexey Khoroshilov's avatar Alexey Khoroshilov Committed by John W. Linville

rsi: GFP_ATOMIC is not needed in rsi_init_usb_interface()

Signed-off-by: default avatarAlexey Khoroshilov <khoroshilov@ispras.ru>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 09ebb810
......@@ -397,7 +397,7 @@ static int rsi_init_usb_interface(struct rsi_hw *adapter,
return -ENOMEM;
}
rsi_dev->tx_buffer = kmalloc(2048, GFP_ATOMIC);
rsi_dev->tx_buffer = kmalloc(2048, GFP_KERNEL);
rsi_dev->rx_usb_urb[0] = usb_alloc_urb(0, GFP_KERNEL);
rsi_dev->rx_usb_urb[0]->transfer_buffer = adapter->priv->rx_data_pkt;
rsi_dev->tx_blk_size = 252;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment