In VIM3L, it's failed to initialize wifi with HT timeout error.
To fix its problem, increase transition delay from 1sec to 5sec in Tizen.
Change-Id: Ib019f00913957a8ea4bb8ab2c3dc5511a52cf0f1
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
*/
#if (PMU_MAX_TRANSITION_DLY <= 1000000)
#undef PMU_MAX_TRANSITION_DLY
+#ifdef CONFIG_TIZEN
+/*
+ * WORKAROUND for Tizen
+ * It needs the more waiting time than 1sec.
+ * So Increase the waiting time from 1sec to 5sec.
+ */
+#define PMU_MAX_TRANSITION_DLY 5000000
+#else
#define PMU_MAX_TRANSITION_DLY 1000000
+#endif /* CONFIG_TIZEN */
#endif
/* hooks for limiting threshold custom tx num in rx processing */