aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Berg <johannes.berg@intel.com>2011-12-14 07:28:46 -0500
committerJohn W. Linville <linville@tuxdriver.com>2011-12-15 14:46:34 -0500
commit56544160d44c3043c0a7faffa506f616c1bb45f0 (patch)
tree2daed2f30fa780dd711ac06440ba9c9c0d78bf38
parent29623892e185b65a503c925236ff73894a842d38 (diff)
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>
-rw-r--r--net/mac80211/sta_info.c2
-rw-r--r--net/mac80211/sta_info.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/net/mac80211/sta_info.c b/net/mac80211/sta_info.c
index 141315ce17d8..16de3bd16107 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,
281} 281}
282 282
283struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata, 283struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata,
284 u8 *addr, gfp_t gfp) 284 const u8 *addr, gfp_t gfp)
285{ 285{
286 struct ieee80211_local *local = sdata->local; 286 struct ieee80211_local *local = sdata->local;
287 struct sta_info *sta; 287 struct sta_info *sta;
diff --git a/net/mac80211/sta_info.h b/net/mac80211/sta_info.h
index 63f4d316a954..15b3bb7d8629 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,
522 * until sta_info_insert(). 522 * until sta_info_insert().
523 */ 523 */
524struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata, 524struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata,
525 u8 *addr, gfp_t gfp); 525 const u8 *addr, gfp_t gfp);
526 526
527void sta_info_free(struct ieee80211_local *local, struct sta_info *sta); 527void sta_info_free(struct ieee80211_local *local, struct sta_info *sta);
528 528