diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2009-01-21 06:47:05 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-01-29 16:01:07 -0500 |
commit | 5f936f11613c32ca7f8ed5fa333bb38a4501deeb (patch) | |
tree | 6963b1e32eaa4d4bdb14655c9e8f209bf0e2c7f7 /include | |
parent | e9414b6b3f34dcc3683e66dffa4f5f167d49df51 (diff) |
mac80211: constify ieee80211_if_conf.bssid
Then one place can be a static const.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Acked-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/mac80211.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h index 9a5869e9ecfa..ef42559694f1 100644 --- a/include/net/mac80211.h +++ b/include/net/mac80211.h | |||
@@ -643,7 +643,7 @@ enum ieee80211_if_conf_change { | |||
643 | */ | 643 | */ |
644 | struct ieee80211_if_conf { | 644 | struct ieee80211_if_conf { |
645 | u32 changed; | 645 | u32 changed; |
646 | u8 *bssid; | 646 | const u8 *bssid; |
647 | }; | 647 | }; |
648 | 648 | ||
649 | /** | 649 | /** |