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

Commit d9517c0a authored by Jakub Kicinski's avatar Jakub Kicinski Committed by Kalle Valo
Browse files

mt7601u: use correct ieee80211_rx variant



Rx is run inside a tasklet so ieee80211_rx() should be used
instead of ieee80211_rx_ni().

Signed-off-by: default avatarJakub Kicinski <kubakici@wp.pl>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent bed429e1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -112,7 +112,7 @@ static void mt7601u_rx_process_seg(struct mt7601u_dev *dev, u8 *data,
	if (!skb)
		return;

	ieee80211_rx_ni(dev->hw, skb);
	ieee80211_rx(dev->hw, skb);
}

static u16 mt7601u_rx_next_seg_len(u8 *data, u32 data_len)