Commit 7b33a57f authored by Johannes Berg's avatar Johannes Berg Committed by David S. Miller

[MAC80211]: remove unused ioctls (3)

The ioctls
 * PRISM2_PARAM_RADAR_DETECT
 * PRISM2_PARAM_SPECTRUM_MGMT

are not used by hostapd or wpa_supplicant,
Signed-off-by: default avatarJohannes Berg <johannes@sipsolutions.net>
Acked-by: default avatarMichael Wu <flamingice@sourmilk.net>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 53cb6700
...@@ -300,20 +300,6 @@ struct ieee80211_conf { ...@@ -300,20 +300,6 @@ struct ieee80211_conf {
/* 0 = default/diversity, 1 = Ant0, 2 = Ant1 */ /* 0 = default/diversity, 1 = Ant0, 2 = Ant1 */
u8 antenna_sel_tx; u8 antenna_sel_tx;
u8 antenna_sel_rx; u8 antenna_sel_rx;
/* Following five fields are used for IEEE 802.11H */
unsigned int radar_detect;
unsigned int spect_mgmt;
/* All following fields are currently unused. */
unsigned int quiet_duration; /* duration of quiet period */
unsigned int quiet_offset; /* how far into the beacon is the quiet
* period */
unsigned int quiet_period;
u8 radar_firpwr_threshold;
u8 radar_rssi_threshold;
u8 pulse_height_threshold;
u8 pulse_rssi_threshold;
u8 pulse_inband_threshold;
}; };
/** /**
......
...@@ -86,8 +86,6 @@ DEBUGFS_READONLY_FILE(channel, 20, "%d", ...@@ -86,8 +86,6 @@ DEBUGFS_READONLY_FILE(channel, 20, "%d",
local->hw.conf.channel); local->hw.conf.channel);
DEBUGFS_READONLY_FILE(frequency, 20, "%d", DEBUGFS_READONLY_FILE(frequency, 20, "%d",
local->hw.conf.freq); local->hw.conf.freq);
DEBUGFS_READONLY_FILE(radar_detect, 20, "%d",
local->hw.conf.radar_detect);
DEBUGFS_READONLY_FILE(antenna_sel_tx, 20, "%d", DEBUGFS_READONLY_FILE(antenna_sel_tx, 20, "%d",
local->hw.conf.antenna_sel_tx); local->hw.conf.antenna_sel_tx);
DEBUGFS_READONLY_FILE(antenna_sel_rx, 20, "%d", DEBUGFS_READONLY_FILE(antenna_sel_rx, 20, "%d",
...@@ -302,7 +300,6 @@ void debugfs_hw_add(struct ieee80211_local *local) ...@@ -302,7 +300,6 @@ void debugfs_hw_add(struct ieee80211_local *local)
DEBUGFS_ADD(channel); DEBUGFS_ADD(channel);
DEBUGFS_ADD(frequency); DEBUGFS_ADD(frequency);
DEBUGFS_ADD(radar_detect);
DEBUGFS_ADD(antenna_sel_tx); DEBUGFS_ADD(antenna_sel_tx);
DEBUGFS_ADD(antenna_sel_rx); DEBUGFS_ADD(antenna_sel_rx);
DEBUGFS_ADD(bridge_packets); DEBUGFS_ADD(bridge_packets);
...@@ -366,7 +363,6 @@ void debugfs_hw_del(struct ieee80211_local *local) ...@@ -366,7 +363,6 @@ void debugfs_hw_del(struct ieee80211_local *local)
{ {
DEBUGFS_DEL(channel); DEBUGFS_DEL(channel);
DEBUGFS_DEL(frequency); DEBUGFS_DEL(frequency);
DEBUGFS_DEL(radar_detect);
DEBUGFS_DEL(antenna_sel_tx); DEBUGFS_DEL(antenna_sel_tx);
DEBUGFS_DEL(antenna_sel_rx); DEBUGFS_DEL(antenna_sel_rx);
DEBUGFS_DEL(bridge_packets); DEBUGFS_DEL(bridge_packets);
......
...@@ -39,8 +39,6 @@ enum { ...@@ -39,8 +39,6 @@ enum {
PRISM2_PARAM_CREATE_IBSS = 1037, PRISM2_PARAM_CREATE_IBSS = 1037,
PRISM2_PARAM_WMM_ENABLED = 1038, PRISM2_PARAM_WMM_ENABLED = 1038,
PRISM2_PARAM_MIXED_CELL = 1039, PRISM2_PARAM_MIXED_CELL = 1039,
PRISM2_PARAM_RADAR_DETECT = 1043,
PRISM2_PARAM_SPECTRUM_MGMT = 1044,
}; };
enum { enum {
......
...@@ -563,7 +563,6 @@ struct ieee80211_local { ...@@ -563,7 +563,6 @@ struct ieee80211_local {
struct local_debugfsdentries { struct local_debugfsdentries {
struct dentry *channel; struct dentry *channel;
struct dentry *frequency; struct dentry *frequency;
struct dentry *radar_detect;
struct dentry *antenna_sel_tx; struct dentry *antenna_sel_tx;
struct dentry *antenna_sel_rx; struct dentry *antenna_sel_rx;
struct dentry *bridge_packets; struct dentry *bridge_packets;
......
...@@ -1125,12 +1125,6 @@ static int ieee80211_ioctl_prism2_param(struct net_device *dev, ...@@ -1125,12 +1125,6 @@ static int ieee80211_ioctl_prism2_param(struct net_device *dev,
else else
sdata->u.sta.wmm_enabled = !!value; sdata->u.sta.wmm_enabled = !!value;
break; break;
case PRISM2_PARAM_RADAR_DETECT:
local->hw.conf.radar_detect = value;
break;
case PRISM2_PARAM_SPECTRUM_MGMT:
local->hw.conf.spect_mgmt = value;
break;
default: default:
ret = -EOPNOTSUPP; ret = -EOPNOTSUPP;
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment