1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-09-28 15:11:27 +02:00

ath9k: reduce rx buffer allocation size

Signed-off-by: Felix Fietkau <nbd@openwrt.org>

SVN-Revision: 38395
This commit is contained in:
Felix Fietkau 2013-10-14 19:20:02 +00:00
parent 07043a853a
commit b907e95125

@ -5368,7 +5368,7 @@
- ds += (desc_len * ndesc);
- bf->bf_desc = ds;
- bf->bf_daddr = DS2PHYS(dd, ds);
+ bsize = sizeof(struct ath_buf) * nbuf;
+ bsize = sizeof(struct ath_rxbuf) * nbuf;
+ bf = devm_kzalloc(sc->dev, bsize, GFP_KERNEL);
+ if (!bf)
+ return -ENOMEM;