bluetooth: btmrvl_sdio: Replace GFP_ATOMIC with GFP_KERNEL in btmrvl_sdio_card_to_host()
[linux-2.6-microblaze.git] / drivers / bluetooth / btmrvl_sdio.c
index 888bac4..fb3d039 100644 (file)
@@ -718,7 +718,7 @@ static int btmrvl_sdio_card_to_host(struct btmrvl_private *priv)
        }
 
        /* Allocate buffer */
-       skb = bt_skb_alloc(num_blocks * blksz + BTSDIO_DMA_ALIGN, GFP_ATOMIC);
+       skb = bt_skb_alloc(num_blocks * blksz + BTSDIO_DMA_ALIGN, GFP_KERNEL);
        if (!skb) {
                BT_ERR("No free skb");
                ret = -ENOMEM;