diff options
author | Johannes Berg <johannes.berg@intel.com> | 2014-01-20 23:29:34 +0100 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2014-02-04 21:48:21 +0100 |
commit | 631ad703ba3a585e96acbfd2ac8c0f0fee1ad99b (patch) | |
tree | 8c65d36d787a5ef4e2aa6e9ac7306e22349dfcb2 /net/mac80211/rc80211_pid_algo.c | |
parent | mac80211: advertise BF STS according to AP support (diff) | |
download | linux-631ad703ba3a585e96acbfd2ac8c0f0fee1ad99b.tar.xz linux-631ad703ba3a585e96acbfd2ac8c0f0fee1ad99b.zip |
mac80211: make rate control ops const
Change the code to allow making all the rate control ops
const, nothing ever needs to change them. Also change all
drivers to make use of this and mark the ops const.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/rc80211_pid_algo.c')
-rw-r--r-- | net/mac80211/rc80211_pid_algo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/rc80211_pid_algo.c b/net/mac80211/rc80211_pid_algo.c index 958fad07b54c..d0da2a70fe68 100644 --- a/net/mac80211/rc80211_pid_algo.c +++ b/net/mac80211/rc80211_pid_algo.c @@ -452,7 +452,7 @@ static void rate_control_pid_free_sta(void *priv, struct ieee80211_sta *sta, kfree(priv_sta); } -static struct rate_control_ops mac80211_rcpid = { +static const struct rate_control_ops mac80211_rcpid = { .name = "pid", .tx_status = rate_control_pid_tx_status, .get_rate = rate_control_pid_get_rate, |