Commit 4f2fdaaf authored by Holger Schurig's avatar Holger Schurig Committed by David S. Miller

[PATCH] libertas: remove adapter->scantype

scantype was initialized with CMD_SCAN_TYPE_ACTIVE, but there is no code
that would ever change it, so we can use that variable directly.
Signed-off-by: default avatarHolger Schurig <hs4233@mail.mn-solutions.de>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent d65ead88
...@@ -262,8 +262,6 @@ struct _wlan_adapter { ...@@ -262,8 +262,6 @@ struct _wlan_adapter {
struct list_head network_free_list; struct list_head network_free_list;
struct bss_descriptor *networks; struct bss_descriptor *networks;
u8 scantype;
u8 adhoccreate; u8 adhoccreate;
/** capability Info used in Association, start, join */ /** capability Info used in Association, start, join */
......
...@@ -1001,9 +1001,6 @@ static void wlan_init_adapter(wlan_private * priv) ...@@ -1001,9 +1001,6 @@ static void wlan_init_adapter(wlan_private * priv)
adapter->connect_status = LIBERTAS_DISCONNECTED; adapter->connect_status = LIBERTAS_DISCONNECTED;
memset(adapter->current_addr, 0xff, ETH_ALEN); memset(adapter->current_addr, 0xff, ETH_ALEN);
/* scan type */
adapter->scantype = CMD_SCAN_TYPE_ACTIVE;
/* 802.11 specific */ /* 802.11 specific */
adapter->secinfo.wep_enabled = 0; adapter->secinfo.wep_enabled = 0;
for (i = 0; i < sizeof(adapter->wep_keys) / sizeof(adapter->wep_keys[0]); for (i = 0; i < sizeof(adapter->wep_keys) / sizeof(adapter->wep_keys[0]);
......
...@@ -252,7 +252,7 @@ static void wlan_scan_create_channel_list(wlan_private * priv, ...@@ -252,7 +252,7 @@ static void wlan_scan_create_channel_list(wlan_private * priv,
* be changed to passive on a per channel basis if restricted by * be changed to passive on a per channel basis if restricted by
* regulatory requirements (11d or 11h) * regulatory requirements (11d or 11h)
*/ */
scantype = adapter->scantype; scantype = CMD_SCAN_TYPE_ACTIVE;
for (rgnidx = 0; rgnidx < ARRAY_SIZE(adapter->region_channel); rgnidx++) { for (rgnidx = 0; rgnidx < ARRAY_SIZE(adapter->region_channel); rgnidx++) {
if (priv->adapter->enable11d && if (priv->adapter->enable11d &&
......
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