diff options
author | Johannes Berg <johannes.berg@intel.com> | 2011-12-14 13:28:46 +0100 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-12-15 14:46:34 -0500 |
commit | 56544160d44c3043c0a7faffa506f616c1bb45f0 (patch) | |
tree | 2daed2f30fa780dd711ac06440ba9c9c0d78bf38 /net/mac80211 | |
parent | 29623892e185b65a503c925236ff73894a842d38 (diff) | |
download | op-kernel-dev-56544160d44c3043c0a7faffa506f616c1bb45f0.zip op-kernel-dev-56544160d44c3043c0a7faffa506f616c1bb45f0.tar.gz |
mac80211: make address arguments to sta_info_alloc const
No real changes, just note that they are const.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211')
-rw-r--r-- | net/mac80211/sta_info.c | 2 | ||||
-rw-r--r-- | net/mac80211/sta_info.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/net/mac80211/sta_info.c b/net/mac80211/sta_info.c index 141315c..16de3bd 100644 --- a/net/mac80211/sta_info.c +++ b/net/mac80211/sta_info.c @@ -281,7 +281,7 @@ static int sta_prepare_rate_control(struct ieee80211_local *local, } struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata, - u8 *addr, gfp_t gfp) + const u8 *addr, gfp_t gfp) { struct ieee80211_local *local = sdata->local; struct sta_info *sta; diff --git a/net/mac80211/sta_info.h b/net/mac80211/sta_info.h index 63f4d31..15b3bb7 100644 --- a/net/mac80211/sta_info.h +++ b/net/mac80211/sta_info.h @@ -522,7 +522,7 @@ struct sta_info *sta_info_get_by_idx(struct ieee80211_sub_if_data *sdata, * until sta_info_insert(). */ struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata, - u8 *addr, gfp_t gfp); + const u8 *addr, gfp_t gfp); void sta_info_free(struct ieee80211_local *local, struct sta_info *sta); |