diff options
author | Inaky Perez-Gonzalez <inaky@linux.intel.com> | 2009-10-07 09:57:39 -0400 |
---|---|---|
committer | Inaky Perez-Gonzalez <inaky@linux.intel.com> | 2009-10-19 02:56:21 -0400 |
commit | 0c96859d7a5f0286ed70d3c4e140ac6816a350da (patch) | |
tree | 1b1553333c356bd477bc20b9ed95705d8ef3ca89 | |
parent | 46c501473d0a6fa62435dfd65c6884e1fd63b327 (diff) |
wimax/i2400m: Let device's status reports change the device state
Currently __i2400m_dev_start was forcing, after uploading firmware and
doing a few checks to WIMAX_ST_UNINITIALIZED.
This can be overriding state changes that the device might have caused
by sending reports; thus it makes more sense to remove it and let the
device update the status on its own by sending reports.
Signed-off-by: Inaky Perez-Gonzalez <inaky@linux.intel.com>
-rw-r--r-- | drivers/net/wimax/i2400m/driver.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/wimax/i2400m/driver.c b/drivers/net/wimax/i2400m/driver.c index 42102ebad1ad..cc900b99e60a 100644 --- a/drivers/net/wimax/i2400m/driver.c +++ b/drivers/net/wimax/i2400m/driver.c | |||
@@ -398,7 +398,6 @@ retry: | |||
398 | result = i2400m_check_mac_addr(i2400m); | 398 | result = i2400m_check_mac_addr(i2400m); |
399 | if (result < 0) | 399 | if (result < 0) |
400 | goto error_check_mac_addr; | 400 | goto error_check_mac_addr; |
401 | wimax_state_change(wimax_dev, WIMAX_ST_UNINITIALIZED); | ||
402 | result = i2400m_dev_initialize(i2400m); | 401 | result = i2400m_dev_initialize(i2400m); |
403 | if (result < 0) | 402 | if (result < 0) |
404 | goto error_dev_initialize; | 403 | goto error_dev_initialize; |