1
0
Fork 0

MLK-21231 gpu: imx: dpu: framegen: Wait for 100ms at most for secondary syncup

Another coming patch will wait for framegen secondary channel syncup
for non-sync mode cases.  It appears that waiting for 50ms for video
modes like 1920x1080p@24 and 1920x1080p@30 is not enough.  So, this
patch increases the timeout value to 100ms.

Signed-off-by: Liu Ying <victor.liu@nxp.com>
5.4-rM2-2.2.x-imx-squashed
Liu Ying 2019-03-22 13:57:43 +08:00
parent 5de3dcaf9c
commit 42b963f49b
1 changed files with 1 additions and 1 deletions

View File

@ -435,7 +435,7 @@ EXPORT_SYMBOL_GPL(framegen_secondary_is_syncup);
void framegen_wait_for_secondary_syncup(struct dpu_framegen *fg)
{
unsigned long timeout = jiffies + msecs_to_jiffies(50);
unsigned long timeout = jiffies + msecs_to_jiffies(100);
bool syncup;
do {