diff options
Diffstat (limited to 'drivers/net/wireless/libertas/cmd.c')
-rw-r--r-- | drivers/net/wireless/libertas/cmd.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/drivers/net/wireless/libertas/cmd.c b/drivers/net/wireless/libertas/cmd.c index 0fa6b0e59ea..d8838461e59 100644 --- a/drivers/net/wireless/libertas/cmd.c +++ b/drivers/net/wireless/libertas/cmd.c | |||
@@ -7,13 +7,8 @@ | |||
7 | #include <linux/sched.h> | 7 | #include <linux/sched.h> |
8 | #include <linux/slab.h> | 8 | #include <linux/slab.h> |
9 | 9 | ||
10 | #include "host.h" | ||
11 | #include "decl.h" | 10 | #include "decl.h" |
12 | #include "defs.h" | 11 | #include "cfg.h" |
13 | #include "dev.h" | ||
14 | #include "assoc.h" | ||
15 | #include "wext.h" | ||
16 | #include "scan.h" | ||
17 | #include "cmd.h" | 12 | #include "cmd.h" |
18 | 13 | ||
19 | 14 | ||
@@ -177,11 +172,6 @@ int lbs_update_hw_spec(struct lbs_private *priv) | |||
177 | if (priv->mesh_dev) | 172 | if (priv->mesh_dev) |
178 | memcpy(priv->mesh_dev->dev_addr, priv->current_addr, ETH_ALEN); | 173 | memcpy(priv->mesh_dev->dev_addr, priv->current_addr, ETH_ALEN); |
179 | 174 | ||
180 | if (lbs_set_regiontable(priv, priv->regioncode, 0)) { | ||
181 | ret = -1; | ||
182 | goto out; | ||
183 | } | ||
184 | |||
185 | out: | 175 | out: |
186 | lbs_deb_leave(LBS_DEB_CMD); | 176 | lbs_deb_leave(LBS_DEB_CMD); |
187 | return ret; | 177 | return ret; |
@@ -1325,6 +1315,15 @@ int lbs_execute_next_command(struct lbs_private *priv) | |||
1325 | * check if in power save mode, if yes, put the device back | 1315 | * check if in power save mode, if yes, put the device back |
1326 | * to PS mode | 1316 | * to PS mode |
1327 | */ | 1317 | */ |
1318 | #ifdef TODO | ||
1319 | /* | ||
1320 | * This was the old code for libertas+wext. Someone that | ||
1321 | * understands this beast should re-code it in a sane way. | ||
1322 | * | ||
1323 | * I actually don't understand why this is related to WPA | ||
1324 | * and to connection status, shouldn't powering should be | ||
1325 | * independ of such things? | ||
1326 | */ | ||
1328 | if ((priv->psmode != LBS802_11POWERMODECAM) && | 1327 | if ((priv->psmode != LBS802_11POWERMODECAM) && |
1329 | (priv->psstate == PS_STATE_FULL_POWER) && | 1328 | (priv->psstate == PS_STATE_FULL_POWER) && |
1330 | ((priv->connect_status == LBS_CONNECTED) || | 1329 | ((priv->connect_status == LBS_CONNECTED) || |
@@ -1346,6 +1345,7 @@ int lbs_execute_next_command(struct lbs_private *priv) | |||
1346 | lbs_ps_sleep(priv, 0); | 1345 | lbs_ps_sleep(priv, 0); |
1347 | } | 1346 | } |
1348 | } | 1347 | } |
1348 | #endif | ||
1349 | } | 1349 | } |
1350 | 1350 | ||
1351 | ret = 0; | 1351 | ret = 0; |