aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wimax
diff options
context:
space:
mode:
authorCindy H Kao <cindy.h.kao@intel.com>2009-06-10 19:52:10 -0400
committerInaky Perez-Gonzalez <inaky@linux.intel.com>2009-06-11 06:30:26 -0400
commit8b5b30ee7ddc989b59ce05dcf2d024a819dc8040 (patch)
tree49b564e60706973bfeac592cb00c76f3c0ce102c /drivers/net/wimax
parent16820c166d3ad5973d388b5aa70ee7e535386657 (diff)
wimax/i2400m: when bootstrap fails, reinitialize the bootrom
When a device reset happens during firmware load [in i2400m_dev_bootstrap()], __i2400m_dev_start() will retry a number of times. However, for those retries to be able to accomplish anything, the device's bootrom has to be reinitialized. Thus, on the retry path, pass the I2400M_MAC_REINIT to the firmware load code. Signed-off-by: Cindy H Kao <cindy.h.kao@intel.com>
Diffstat (limited to 'drivers/net/wimax')
-rw-r--r--drivers/net/wimax/i2400m/driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wimax/i2400m/driver.c b/drivers/net/wimax/i2400m/driver.c
index 8d8628e5af44..2a093c5768cc 100644
--- a/drivers/net/wimax/i2400m/driver.c
+++ b/drivers/net/wimax/i2400m/driver.c
@@ -454,7 +454,7 @@ error_rx_setup:
454error_tx_setup: 454error_tx_setup:
455error_bootstrap: 455error_bootstrap:
456 if (result == -ERESTARTSYS && times-- > 0) { 456 if (result == -ERESTARTSYS && times-- > 0) {
457 flags = I2400M_BRI_SOFT; 457 flags = I2400M_BRI_SOFT|I2400M_BRI_MAC_REINIT;
458 goto retry; 458 goto retry;
459 } 459 }
460 d_fnend(3, dev, "(net_dev %p [i2400m %p]) = %d\n", 460 d_fnend(3, dev, "(net_dev %p [i2400m %p]) = %d\n",