diff options
| author | Rahul Sharma <sharah@codeaurora.org> | 2017-09-05 16:44:07 +0530 |
|---|---|---|
| committer | Andy Sun <bins@qti.qualcomm.com> | 2017-09-13 15:07:11 +0800 |
| commit | 57aebae70bb2f75a3a50472546339f8995b69243 (patch) | |
| tree | f4486519395de60aa0f4b6d1aef00a4bce483bbc | |
| parent | 14f6bfeeebb97c02cbf0c43818f7998e3bdb3cae (diff) | |
msm: ais: isp: Reducing ISPIF stop waiting time
Initial ISPIF waiting was one second which causes
hang for one second in case of sensor removal hence
wait is reduced to 200ms.
Change-Id: I531a880435983fe2e1e4f0f7616c6a6b1632dac8
Signed-off-by: Rahul Sharma <sharah@codeaurora.org>
| -rw-r--r-- | drivers/media/platform/msm/ais/ispif/msm_ispif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/platform/msm/ais/ispif/msm_ispif.c b/drivers/media/platform/msm/ais/ispif/msm_ispif.c index c41f4546da5f..bb75e69ea215 100644 --- a/drivers/media/platform/msm/ais/ispif/msm_ispif.c +++ b/drivers/media/platform/msm/ais/ispif/msm_ispif.c @@ -46,7 +46,7 @@ #define ISPIF_INTF_CMD_DISABLE_IMMEDIATELY 0x02 #define ISPIF_TIMEOUT_SLEEP_US 1000 -#define ISPIF_TIMEOUT_ALL_US 1000000 +#define ISPIF_TIMEOUT_ALL_US 200000 #define ISPIF_SOF_DEBUG_COUNT 0 #undef CDBG |
