Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit addc9851 authored by Larry Finger's avatar Larry Finger Committed by John W. Linville
Browse files

b43: Remove unneeded message



The driver can spam the logs with "RX: Packet dropped" messages. These drops
originate from 1. a correpted PLCP, 2. decryption errors, and 3. packet
size underruns. Condition #3 logs a separate message, thus no dropped message
is needed.

Signed-off-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 05cb9108
Loading
Loading
Loading
Loading
+0 −1
Original line number Original line Diff line number Diff line
@@ -827,7 +827,6 @@ void b43_rx(struct b43_wldev *dev, struct sk_buff *skb, const void *_rxhdr)
#endif
#endif
	return;
	return;
drop:
drop:
	b43dbg(dev->wl, "RX: Packet dropped\n");
	dev_kfree_skb_any(skb);
	dev_kfree_skb_any(skb);
}
}