Commit 6d45a74b authored by Vasanthakumar Thiagarajan's avatar Vasanthakumar Thiagarajan Committed by Johannes Berg

cfg80211: Move the definition of struct mac_address up

struct mac_address will be used by ACL related configuration ops.
Signed-off-by: default avatarVasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent fe80123d
...@@ -527,6 +527,10 @@ struct cfg80211_beacon_data { ...@@ -527,6 +527,10 @@ struct cfg80211_beacon_data {
size_t probe_resp_len; size_t probe_resp_len;
}; };
struct mac_address {
u8 addr[ETH_ALEN];
};
/** /**
* struct cfg80211_ap_settings - AP configuration * struct cfg80211_ap_settings - AP configuration
* *
...@@ -2181,10 +2185,6 @@ struct ieee80211_iface_combination { ...@@ -2181,10 +2185,6 @@ struct ieee80211_iface_combination {
u8 radar_detect_widths; u8 radar_detect_widths;
}; };
struct mac_address {
u8 addr[ETH_ALEN];
};
struct ieee80211_txrx_stypes { struct ieee80211_txrx_stypes {
u16 tx, rx; u16 tx, rx;
}; };
......
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