From 455affb66eeea08470e11a05a69ff0f4e8158106 Mon Sep 17 00:00:00 2001 From: Matt Sealey Date: Thu, 19 Apr 2012 19:15:49 -0500 Subject: [PATCH] siihdmi: reintroduce the 480-600ms sleep after reset to allow hotplug to settle. --- drivers/video/mxc/siihdmi.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/video/mxc/siihdmi.c b/drivers/video/mxc/siihdmi.c index 430500a3ba1..2415383bbca 100644 --- a/drivers/video/mxc/siihdmi.c +++ b/drivers/video/mxc/siihdmi.c @@ -205,8 +205,10 @@ static int siihdmi_initialise(struct siihdmi_tx *tx) int ret; /* step 1: reset and initialise */ - if (tx->platform->reset) + if (tx->platform->reset) { tx->platform->reset(); + msleep(480); + } ret = i2c_smbus_write_byte_data(tx->client, SIIHDMI_TPI_REG_RQB, 0x00); if (ret < 0) {