Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3b40c040 authored by Johannes Berg's avatar Johannes Berg Committed by John W. Linville
Browse files

wl12xx: remove wext dependencies



This driver uses IW_ESSID_MAX_SIZE when it should
be using IEEE80211_MAX_SSID_LEN instead.

Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
Acked-by: default avatarLuciano Coelho <coelho@ti.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 029111e1
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -239,7 +239,7 @@ struct wl1271_cmd_join {
	u8 bss_type;
	u8 channel;
	u8 ssid_len;
	u8 ssid[IW_ESSID_MAX_SIZE];
	u8 ssid[IEEE80211_MAX_SSID_LEN];
	u8 ctrl; /* JOIN_CMD_CTRL_* */
	u8 reserved[3];
} __packed;
@@ -528,7 +528,7 @@ struct wl1271_cmd_bss_start {
	/* wl1271_ssid_type */
	u8 ssid_type;
	u8 ssid_len;
	u8 ssid[IW_ESSID_MAX_SIZE];
	u8 ssid[IEEE80211_MAX_SSID_LEN];
	u8 padding_1[2];

	/* Basic rate set */
+1 −1
Original line number Diff line number Diff line
@@ -1997,7 +1997,7 @@ static void __wl1271_op_remove_interface(struct wl1271 *wl,
	wl1271_power_off(wl);

	memset(wl->bssid, 0, ETH_ALEN);
	memset(wl->ssid, 0, IW_ESSID_MAX_SIZE + 1);
	memset(wl->ssid, 0, IEEE80211_MAX_SSID_LEN + 1);
	wl->ssid_len = 0;
	wl->bss_type = MAX_BSS_TYPE;
	wl->set_bss_type = MAX_BSS_TYPE;
+3 −3
Original line number Diff line number Diff line
@@ -77,7 +77,7 @@ struct basic_scan_params {
	u8 ssid_len;
	/* in order to align */
	u8 padding1[2];
	u8 ssid[IW_ESSID_MAX_SIZE];
	u8 ssid[IEEE80211_MAX_SSID_LEN];
	/* Band to scan */
	u8 band;
	u8 use_ssid_list;
@@ -167,7 +167,7 @@ struct wl1271_cmd_sched_scan_config {
	u8 filter_type;

	u8 ssid_len;     /* For SCAN_SSID_FILTER_SPECIFIC */
	u8 ssid[IW_ESSID_MAX_SIZE];
	u8 ssid[IEEE80211_MAX_SSID_LEN];

	u8 n_probe_reqs; /* Number of probes requests per channel */

@@ -194,7 +194,7 @@ enum {
struct wl1271_ssid {
	u8 type;
	u8 len;
	u8 ssid[IW_ESSID_MAX_SIZE];
	u8 ssid[IEEE80211_MAX_SSID_LEN];
	/* u8 padding[2]; */
} __packed;

+2 −2
Original line number Diff line number Diff line
@@ -309,7 +309,7 @@ struct wl1271_scan {
	unsigned long scanned_ch[BITS_TO_LONGS(WL1271_MAX_CHANNELS)];
	bool failed;
	u8 state;
	u8 ssid[IW_ESSID_MAX_SIZE+1];
	u8 ssid[IEEE80211_MAX_SSID_LEN+1];
	size_t ssid_len;
};

@@ -415,7 +415,7 @@ struct wl1271 {
	u8 mac_addr[ETH_ALEN];
	u8 bss_type;
	u8 set_bss_type;
	u8 ssid[IW_ESSID_MAX_SIZE + 1];
	u8 ssid[IEEE80211_MAX_SSID_LEN + 1];
	u8 ssid_len;
	int channel;

+1 −1
Original line number Diff line number Diff line
@@ -77,7 +77,7 @@ struct wl12xx_ie_header {

struct wl12xx_ie_ssid {
	struct wl12xx_ie_header header;
	char ssid[IW_ESSID_MAX_SIZE];
	char ssid[IEEE80211_MAX_SSID_LEN];
} __packed;

struct wl12xx_ie_rates {