ath9k: reduce rx buffer allocation size

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

SVN-Revision: 38395
v19.07.3_mercusys_ac12_duma
Felix Fietkau 11 years ago
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;

Loading…
Cancel
Save