diff options
author | Nitin Garg <nitin.garg@freescale.com> | 2012-03-07 14:31:19 -0600 |
---|---|---|
committer | Nitin Garg <nitin.garg@freescale.com> | 2012-03-07 14:31:19 -0600 |
commit | d7d90554462c0e9046f58454198ac3149d95b4b5 (patch) | |
tree | be766aadf15d52d760aacdf89ef5876df8b936ed /drivers | |
parent | 1201aa6b1e7c2c2d3e6361c686419309022ae4df (diff) |
ENGR00175614: Wifi:Not statble for atheros hw2.1.1
Workaround for some WIFI card not stable at 50MHz,
downgrade this clock to 49.9Mhz. Due to this sometimes the Wifi
driver fails to load on first attempt.
Signed-off-by: Nitin Garg <nitin.garg@freescale.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mmc/core/sdio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/core/sdio.c b/drivers/mmc/core/sdio.c index d7892386c940..07a671377b47 100644 --- a/drivers/mmc/core/sdio.c +++ b/drivers/mmc/core/sdio.c @@ -314,7 +314,7 @@ static unsigned mmc_sdio_get_max_clock(struct mmc_card *card) * high-speed, but it seems that 50 MHz is * mandatory. */ - max_dtr = 50000000; + max_dtr = 49900000; } else { max_dtr = card->cis.max_dtr; } |