summaryrefslogtreecommitdiff
authorWeiguang Ruan <Weiguang.ruan@amlogic.com>2014-07-07 08:44:53 (GMT)
committer Weiguang Ruan <Weiguang.ruan@amlogic.com>2014-07-07 08:44:53 (GMT)
commitad95923176ed046d5899883b29bf06e367e659e4 (patch)
tree71373ddd67341335193b372d3b62f467124b433d
parent830e4ec613873050002c206f1c519fc2286bd923 (diff)
download8723bs-ad95923176ed046d5899883b29bf06e367e659e4.zip
8723bs-ad95923176ed046d5899883b29bf06e367e659e4.tar.gz
8723bs-ad95923176ed046d5899883b29bf06e367e659e4.tar.bz2
PD #93983: fix 8723bs reboot error(add delay before extern_wifi_set_enable)
Diffstat
-rwxr-xr-xrtl8723BS/platform/platform_ops.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/rtl8723BS/platform/platform_ops.c b/rtl8723BS/platform/platform_ops.c
index 59cafc5..689e3a1 100755
--- a/rtl8723BS/platform/platform_ops.c
+++ b/rtl8723BS/platform/platform_ops.c
@@ -32,10 +32,10 @@ int platform_wifi_power_on(void)
int ret = 0;
printk("######%s: \n",__func__);
-// extern_wifi_set_enable(0);
-// msleep(500);
+ extern_wifi_set_enable(0);
+ msleep(300);
extern_wifi_set_enable(1);
- msleep(500);
+ msleep(300);
sdio_reinit();
return ret;
}