From: Noralf Trønnes Date: Wed, 10 Jan 2018 18:59:40 +0000 (+0100) Subject: drm/tinydrm/mipi-dbi: Change reset active time X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=10399b22c1a0e0bbbf56460447e7e602737b0058;p=linux.git drm/tinydrm/mipi-dbi: Change reset active time The MIPI DBI spec states that reset active/low time should be more than 9us. Change from 20ms to 20us. Signed-off-by: Noralf Trønnes Reviewed-by: David Lechner Tested-by: David Lechner Link: https://patchwork.freedesktop.org/patch/msgid/20180110185940.53841-8-noralf@tronnes.org --- diff --git a/drivers/gpu/drm/tinydrm/mipi-dbi.c b/drivers/gpu/drm/tinydrm/mipi-dbi.c index 6798b48374410..75dd65c57e74b 100644 --- a/drivers/gpu/drm/tinydrm/mipi-dbi.c +++ b/drivers/gpu/drm/tinydrm/mipi-dbi.c @@ -414,7 +414,7 @@ void mipi_dbi_hw_reset(struct mipi_dbi *mipi) return; gpiod_set_value_cansleep(mipi->reset, 0); - msleep(20); + usleep_range(20, 1000); gpiod_set_value_cansleep(mipi->reset, 1); msleep(120); }