diff options
-rw-r--r-- | include/net/mac80211.h | 11 | ||||
-rw-r--r-- | net/mac80211/rx.c | 4 |
2 files changed, 3 insertions, 12 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h index aac84d7bd46e..466859b285e1 100644 --- a/include/net/mac80211.h +++ b/include/net/mac80211.h | |||
@@ -1657,12 +1657,6 @@ void ieee80211_free_hw(struct ieee80211_hw *hw); | |||
1657 | */ | 1657 | */ |
1658 | void ieee80211_restart_hw(struct ieee80211_hw *hw); | 1658 | void ieee80211_restart_hw(struct ieee80211_hw *hw); |
1659 | 1659 | ||
1660 | /* | ||
1661 | * trick to avoid symbol clashes with the ieee80211 subsystem, | ||
1662 | * use the inline below instead | ||
1663 | */ | ||
1664 | void __ieee80211_rx(struct ieee80211_hw *hw, struct sk_buff *skb); | ||
1665 | |||
1666 | /** | 1660 | /** |
1667 | * ieee80211_rx - receive frame | 1661 | * ieee80211_rx - receive frame |
1668 | * | 1662 | * |
@@ -1678,10 +1672,7 @@ void __ieee80211_rx(struct ieee80211_hw *hw, struct sk_buff *skb); | |||
1678 | * @hw: the hardware this frame came in on | 1672 | * @hw: the hardware this frame came in on |
1679 | * @skb: the buffer to receive, owned by mac80211 after this call | 1673 | * @skb: the buffer to receive, owned by mac80211 after this call |
1680 | */ | 1674 | */ |
1681 | static inline void ieee80211_rx(struct ieee80211_hw *hw, struct sk_buff *skb) | 1675 | void ieee80211_rx(struct ieee80211_hw *hw, struct sk_buff *skb); |
1682 | { | ||
1683 | __ieee80211_rx(hw, skb); | ||
1684 | } | ||
1685 | 1676 | ||
1686 | /** | 1677 | /** |
1687 | * ieee80211_rx_irqsafe - receive frame | 1678 | * ieee80211_rx_irqsafe - receive frame |
diff --git a/net/mac80211/rx.c b/net/mac80211/rx.c index 7065fd7e7ba2..dff2239db6e2 100644 --- a/net/mac80211/rx.c +++ b/net/mac80211/rx.c | |||
@@ -2440,7 +2440,7 @@ static u8 ieee80211_rx_reorder_ampdu(struct ieee80211_local *local, | |||
2440 | * This is the receive path handler. It is called by a low level driver when an | 2440 | * This is the receive path handler. It is called by a low level driver when an |
2441 | * 802.11 MPDU is received from the hardware. | 2441 | * 802.11 MPDU is received from the hardware. |
2442 | */ | 2442 | */ |
2443 | void __ieee80211_rx(struct ieee80211_hw *hw, struct sk_buff *skb) | 2443 | void ieee80211_rx(struct ieee80211_hw *hw, struct sk_buff *skb) |
2444 | { | 2444 | { |
2445 | struct ieee80211_local *local = hw_to_local(hw); | 2445 | struct ieee80211_local *local = hw_to_local(hw); |
2446 | struct ieee80211_rate *rate = NULL; | 2446 | struct ieee80211_rate *rate = NULL; |
@@ -2523,7 +2523,7 @@ void __ieee80211_rx(struct ieee80211_hw *hw, struct sk_buff *skb) | |||
2523 | 2523 | ||
2524 | rcu_read_unlock(); | 2524 | rcu_read_unlock(); |
2525 | } | 2525 | } |
2526 | EXPORT_SYMBOL(__ieee80211_rx); | 2526 | EXPORT_SYMBOL(ieee80211_rx); |
2527 | 2527 | ||
2528 | /* This is a version of the rx handler that can be called from hard irq | 2528 | /* This is a version of the rx handler that can be called from hard irq |
2529 | * context. Post the skb on the queue and schedule the tasklet */ | 2529 | * context. Post the skb on the queue and schedule the tasklet */ |