summaryrefslogtreecommitdiff
path: root/package/mac80211/patches/570-ath_use_gfp_dma.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2009-11-22 07:13:30 +0000
committerFelix Fietkau <nbd@openwrt.org>2009-11-22 07:13:30 +0000
commite4489675b560ba14e74ed760f0ee9b96923ecad8 (patch)
tree57641e00bf9b06481b08a226ca91343041ba881c /package/mac80211/patches/570-ath_use_gfp_dma.patch
parentf1da5431bb3e440f3d1337a8ec08cc09611a1550 (diff)
downloadmtk-20170518-e4489675b560ba14e74ed760f0ee9b96923ecad8.zip
mtk-20170518-e4489675b560ba14e74ed760f0ee9b96923ecad8.tar.gz
mtk-20170518-e4489675b560ba14e74ed760f0ee9b96923ecad8.tar.bz2
mac80211: update to compat-wireless 2009-11-21
SVN-Revision: 18465
Diffstat (limited to 'package/mac80211/patches/570-ath_use_gfp_dma.patch')
-rw-r--r--package/mac80211/patches/570-ath_use_gfp_dma.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/package/mac80211/patches/570-ath_use_gfp_dma.patch b/package/mac80211/patches/570-ath_use_gfp_dma.patch
deleted file mode 100644
index af375b1..0000000
--- a/package/mac80211/patches/570-ath_use_gfp_dma.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/drivers/net/wireless/ath/main.c
-+++ b/drivers/net/wireless/ath/main.c
-@@ -43,7 +43,7 @@ struct sk_buff *ath_rxbuf_alloc(struct a
- * Unfortunately this means we may get 8 KB here from the
- * kernel... and that is actually what is observed on some
- * systems :( */
-- skb = __dev_alloc_skb(len + common->cachelsz - 1, gfp_mask);
-+ skb = __dev_alloc_skb(len + common->cachelsz - 1, gfp_mask | GFP_DMA);
- if (skb != NULL) {
- off = ((unsigned long) skb->data) % common->cachelsz;
- if (off != 0)