aboutsummaryrefslogtreecommitdiffstats
path: root/include/net
diff options
context:
space:
mode:
authorJohn W. Linville <linville@tuxdriver.com>2009-08-20 16:34:15 -0400
committerJohn W. Linville <linville@tuxdriver.com>2009-08-28 14:40:29 -0400
commit103bf9f7d35849bce52ad412e4da5063b0716969 (patch)
tree67712138dc332cc42f3cc69ab2db9dbb60b4b4e1 /include/net
parentb0a4e7d8a291de63f35b04464de9ab4a83d38a7c (diff)
mac80211: remove ieee80211_rx namespace hack
With the libipw naming scheme change, it is no longer necessary for mac80211 to avoid the ieee80211_rx name clash. Reported-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'include/net')
-rw-r--r--include/net/mac80211.h11
1 files changed, 1 insertions, 10 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 */
1658void ieee80211_restart_hw(struct ieee80211_hw *hw); 1658void 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 */
1664void __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 */
1681static inline void ieee80211_rx(struct ieee80211_hw *hw, struct sk_buff *skb) 1675void 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