diff options
author | Luciano Coelho <luciano.coelho@nokia.com> | 2009-11-23 16:22:18 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-11-28 15:04:31 -0500 |
commit | 4a90406b876cade9bb8d9c95b048d60fb979ba6b (patch) | |
tree | 557425e0028ef1953012498ae4ced0b1e87b6215 /drivers/net/wireless/wl12xx/wl1271_main.c | |
parent | 98b5dd5ded8cb59b598b2c0c396100054779eda7 (diff) |
wl1271: remove workaround to ignore -EIO from radio and general params
We were ignoring the -EIO return value from wl1271_cmd_radio_params() and
wl1271_cmd_general_params(), because they were always returning an error and
we didn't know why. Now this has been fixed, so the workaround can be
removed.
Signed-off-by: Luciano Coelho <luciano.coelho@nokia.com>
Reviewed-by: Juuso Oikarinen <juuso.oikarinen@nokia.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/wl12xx/wl1271_main.c')
-rw-r--r-- | drivers/net/wireless/wl12xx/wl1271_main.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/net/wireless/wl12xx/wl1271_main.c b/drivers/net/wireless/wl12xx/wl1271_main.c index b75557e0e68..64d05265f7e 100644 --- a/drivers/net/wireless/wl12xx/wl1271_main.c +++ b/drivers/net/wireless/wl12xx/wl1271_main.c | |||
@@ -354,15 +354,12 @@ static int wl1271_plt_init(struct wl1271 *wl) | |||
354 | { | 354 | { |
355 | int ret; | 355 | int ret; |
356 | 356 | ||
357 | /* FIXME: the following parameter setting functions return error | ||
358 | * codes - the reason is so far unknown. The -EIO is therefore | ||
359 | * ignored for the time being. */ | ||
360 | ret = wl1271_cmd_general_parms(wl); | 357 | ret = wl1271_cmd_general_parms(wl); |
361 | if (ret < 0 && ret != -EIO) | 358 | if (ret < 0) |
362 | return ret; | 359 | return ret; |
363 | 360 | ||
364 | ret = wl1271_cmd_radio_parms(wl); | 361 | ret = wl1271_cmd_radio_parms(wl); |
365 | if (ret < 0 && ret != -EIO) | 362 | if (ret < 0) |
366 | return ret; | 363 | return ret; |
367 | 364 | ||
368 | ret = wl1271_acx_init_mem_config(wl); | 365 | ret = wl1271_acx_init_mem_config(wl); |