diff options
author | Luis R. Rodriguez <lrodriguez@atheros.com> | 2009-11-02 12:15:15 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-11-04 18:44:53 -0500 |
commit | e9a6269d5bcb1c7cd18cea02a9a73fac8712f2d1 (patch) | |
tree | 63dd0f5280a41c6896d2a6584f3d49b478af59c8 /drivers/net/wireless/wl12xx | |
parent | c327d96759ac134384114830e19ded80e29fdcc4 (diff) |
wl1271: use __dev_alloc_skb() on RX
RX is handled in a workqueue therefore allocating for GFP_ATOMIC
is overkill and not required.
Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com>
Acked-by: Luciano Coelho <luciano.coelho@nokia.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/wl12xx')
-rw-r--r-- | drivers/net/wireless/wl12xx/wl1271_rx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/wl12xx/wl1271_rx.c b/drivers/net/wireless/wl12xx/wl1271_rx.c index 37d81ab6acc0..ca645f38109b 100644 --- a/drivers/net/wireless/wl12xx/wl1271_rx.c +++ b/drivers/net/wireless/wl12xx/wl1271_rx.c | |||
@@ -159,7 +159,7 @@ static void wl1271_rx_handle_data(struct wl1271 *wl, u32 length) | |||
159 | u8 *buf; | 159 | u8 *buf; |
160 | u8 beacon = 0; | 160 | u8 beacon = 0; |
161 | 161 | ||
162 | skb = dev_alloc_skb(length); | 162 | skb = __dev_alloc_skb(length, GFP_KERNEL); |
163 | if (!skb) { | 163 | if (!skb) { |
164 | wl1271_error("Couldn't allocate RX frame"); | 164 | wl1271_error("Couldn't allocate RX frame"); |
165 | return; | 165 | return; |