aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/ieee80211.c
diff options
context:
space:
mode:
authorJohannes Berg <johannes@sipsolutions.net>2007-08-28 17:01:53 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2007-10-10 19:48:43 -0400
commit82f716056fb1c214289fe6c284b0316858c1b70c (patch)
tree913ab04947109bfeff815d3076117842f651f26d /net/mac80211/ieee80211.c
parent643856729e2fde781f63eb84ecb43bbad35bf1ae (diff)
[MAC80211]: remove radar stuff
Unused in drivers, userspace and mac80211. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Acked-by: Michael Wu <flamingice@sourmilk.net> Signed-off-by: John W. Linville <linville@tuxdriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/mac80211/ieee80211.c')
-rw-r--r--net/mac80211/ieee80211.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/net/mac80211/ieee80211.c b/net/mac80211/ieee80211.c
index 00df2a9a2661..703f998292c8 100644
--- a/net/mac80211/ieee80211.c
+++ b/net/mac80211/ieee80211.c
@@ -201,34 +201,6 @@ ieee80211_rx_mgmt(struct ieee80211_local *local, struct sk_buff *skb,
201 netif_rx(skb); 201 netif_rx(skb);
202} 202}
203 203
204int ieee80211_radar_status(struct ieee80211_hw *hw, int channel,
205 int radar, int radar_type)
206{
207 struct sk_buff *skb;
208 struct ieee80211_radar_info *msg;
209 struct ieee80211_local *local = hw_to_local(hw);
210
211 if (!local->apdev)
212 return 0;
213
214 skb = dev_alloc_skb(sizeof(struct ieee80211_frame_info) +
215 sizeof(struct ieee80211_radar_info));
216
217 if (!skb)
218 return -ENOMEM;
219 skb_reserve(skb, sizeof(struct ieee80211_frame_info));
220
221 msg = (struct ieee80211_radar_info *)
222 skb_put(skb, sizeof(struct ieee80211_radar_info));
223 msg->channel = channel;
224 msg->radar = radar;
225 msg->radar_type = radar_type;
226
227 ieee80211_rx_mgmt(local, skb, NULL, ieee80211_msg_radar);
228 return 0;
229}
230EXPORT_SYMBOL(ieee80211_radar_status);
231
232void ieee80211_key_threshold_notify(struct net_device *dev, 204void ieee80211_key_threshold_notify(struct net_device *dev,
233 struct ieee80211_key *key, 205 struct ieee80211_key *key,
234 struct sta_info *sta) 206 struct sta_info *sta)