summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorMarc Yang <yangyang@marvell.com>2014-12-31 02:36:40 -0800
committerKalle Valo <kvalo@codeaurora.org>2015-01-06 21:19:38 +0200
commitb4f1b177be27103cd84a3692ae71bf857700e27f (patch)
tree4d66dc0a5de3e110baad5cbdf0c0e0bc449522de /drivers
parent9d2e85e001c15789798a1550cce5e7cc3ffe4e9b (diff)
downloadlinux-b4f1b177be27103cd84a3692ae71bf857700e27f.tar.bz2
mwifiex: increase delay during card reset
200ms is the requirement to allow VDD1.1 and VDD1.8 to drop to have proper reset. Signed-off-by: Cathy Luo <cluo@marvell.com> Signed-off-by: Marc Yang <yangyang@marvell.com> Signed-off-by: Amitkumar Karwar <akarwar@marvell.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/wireless/mwifiex/sdio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/mwifiex/sdio.c b/drivers/net/wireless/mwifiex/sdio.c
index 274a1b2b0365..4e8aedd5c9f3 100644
--- a/drivers/net/wireless/mwifiex/sdio.c
+++ b/drivers/net/wireless/mwifiex/sdio.c
@@ -1958,8 +1958,8 @@ static void mwifiex_sdio_card_reset_work(struct mwifiex_adapter *adapter)
pr_err("Resetting card...\n");
mmc_remove_host(target);
- /* 20ms delay is based on experiment with sdhci controller */
- mdelay(20);
+ /* 200ms delay is based on experiment with sdhci controller */
+ mdelay(200);
target->rescan_entered = 0; /* rescan non-removable cards */
mmc_add_host(target);
}