Skip to content

Commit

Permalink
b43: use ieee80211_rx_ni()
Browse files Browse the repository at this point in the history
Convert to new use ieee80211_rx_ni() routine rather than open-coded
version.

Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
John W. Linville committed Oct 27, 2009
1 parent 8ef37f1 commit 72f5f45
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions drivers/net/wireless/b43/xmit.c
Original file line number Diff line number Diff line change
Expand Up @@ -690,10 +690,7 @@ void b43_rx(struct b43_wldev *dev, struct sk_buff *skb, const void *_rxhdr)
}

memcpy(IEEE80211_SKB_RXCB(skb), &status, sizeof(status));

local_bh_disable();
ieee80211_rx(dev->wl->hw, skb);
local_bh_enable();
ieee80211_rx_ni(dev->wl->hw, skb);

#if B43_DEBUG
dev->rx_count++;
Expand Down

0 comments on commit 72f5f45

Please sign in to comment.