Commit c238c8ac authored by Johannes Berg's avatar Johannes Berg Committed by John W. Linville

cfg80211: dont use union for wext

Otherwise it becomes very hard to reset the structs
correctly since wext can be configured while the
interface is down.
Signed-off-by: default avatarJohannes Berg <johannes@sipsolutions.net>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 78485475
...@@ -1270,10 +1270,8 @@ struct wireless_dev { ...@@ -1270,10 +1270,8 @@ struct wireless_dev {
#ifdef CONFIG_WIRELESS_EXT #ifdef CONFIG_WIRELESS_EXT
/* wext data */ /* wext data */
struct { struct {
union { struct cfg80211_ibss_params ibss;
struct cfg80211_ibss_params ibss; struct cfg80211_connect_params connect;
struct cfg80211_connect_params connect;
};
u8 *ie; u8 *ie;
size_t ie_len; size_t ie_len;
u8 bssid[ETH_ALEN]; u8 bssid[ETH_ALEN];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment