Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 66345
b: refs/heads/master
c: 82f7160
h: refs/heads/master
i:
  66343: cc613c5
v: v3
  • Loading branch information
Johannes Berg authored and David S. Miller committed Oct 10, 2007
1 parent a7b246d commit 5cf6f05
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 36 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 643856729e2fde781f63eb84ecb43bbad35bf1ae
refs/heads/master: 82f716056fb1c214289fe6c284b0316858c1b70c
6 changes: 0 additions & 6 deletions trunk/include/net/mac80211.h
Original file line number Diff line number Diff line change
Expand Up @@ -1015,12 +1015,6 @@ ieee80211_get_mc_list_item(struct ieee80211_hw *hw,
/* called by driver to notify scan status completed */
void ieee80211_scan_completed(struct ieee80211_hw *hw);

/* Function to indicate Radar Detection. The low level driver must call this
* function to indicate the presence of radar in the current channel.
* Additionally the radar type also could be sent */
int ieee80211_radar_status(struct ieee80211_hw *hw, int channel,
int radar, int radar_type);

/* return a pointer to the source address (SA) */
static inline u8 *ieee80211_get_SA(struct ieee80211_hdr *hdr)
{
Expand Down
28 changes: 0 additions & 28 deletions trunk/net/mac80211/ieee80211.c
Original file line number Diff line number Diff line change
Expand Up @@ -201,34 +201,6 @@ ieee80211_rx_mgmt(struct ieee80211_local *local, struct sk_buff *skb,
netif_rx(skb);
}

int ieee80211_radar_status(struct ieee80211_hw *hw, int channel,
int radar, int radar_type)
{
struct sk_buff *skb;
struct ieee80211_radar_info *msg;
struct ieee80211_local *local = hw_to_local(hw);

if (!local->apdev)
return 0;

skb = dev_alloc_skb(sizeof(struct ieee80211_frame_info) +
sizeof(struct ieee80211_radar_info));

if (!skb)
return -ENOMEM;
skb_reserve(skb, sizeof(struct ieee80211_frame_info));

msg = (struct ieee80211_radar_info *)
skb_put(skb, sizeof(struct ieee80211_radar_info));
msg->channel = channel;
msg->radar = radar;
msg->radar_type = radar_type;

ieee80211_rx_mgmt(local, skb, NULL, ieee80211_msg_radar);
return 0;
}
EXPORT_SYMBOL(ieee80211_radar_status);

void ieee80211_key_threshold_notify(struct net_device *dev,
struct ieee80211_key *key,
struct sta_info *sta)
Expand Down
2 changes: 1 addition & 1 deletion trunk/net/mac80211/ieee80211_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ enum ieee80211_msg_type {
ieee80211_msg_sta_not_assoc = 7,
/* 8 was ieee80211_msg_set_aid_for_sta */
ieee80211_msg_key_threshold_notification = 9,
ieee80211_msg_radar = 11,
/* 11 was ieee80211_msg_radar */
};

struct ieee80211_msg_key_notification {
Expand Down

0 comments on commit 5cf6f05

Please sign in to comment.