Commit 56544160d44c3043c0a7faffa506f616c1bb45f0
Committed by
John W. Linville
1 parent
29623892e1
Exists in
master
and in
6 other branches
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>
Showing 2 changed files with 2 additions and 2 deletions Side-by-side Diff
net/mac80211/sta_info.c
net/mac80211/sta_info.h
... | ... | @@ -522,7 +522,7 @@ |
522 | 522 | * until sta_info_insert(). |
523 | 523 | */ |
524 | 524 | struct 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 | |
527 | 527 | void sta_info_free(struct ieee80211_local *local, struct sta_info *sta); |
528 | 528 |