summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>2021-07-04 12:34:58 +0100
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>2021-07-04 12:34:58 +0100
commit32d642d33882d3c2f15c1fdd2b3734c3c892a534 (patch)
tree52a7108a0dde579f8e9876be4f35cc772d693a58 /src
parenta197e3c1db3ec36da6a5445d2a54f58cfd5053d5 (diff)
downloadenlightenment-32d642d33882d3c2f15c1fdd2b3734c3c892a534.tar.gz
system ddc - more of a delay at start after modprobe
it seems on starts while xrandr is busy talking to screens sometiems one of my screens doesnt respond... unless we wait a bit. so .. wait more.
Diffstat (limited to 'src')
-rw-r--r--src/bin/system/e_system_ddc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/system/e_system_ddc.c b/src/bin/system/e_system_ddc.c
index 25e65521b8..7b12fc5f44 100644
--- a/src/bin/system/e_system_ddc.c
+++ b/src/bin/system/e_system_ddc.c
@@ -334,7 +334,7 @@ _ddc_init(void)
// brute force modprobe this as it likely is needed - probe will fail
// if this doesn't work or find devices anyway
if (system("modprobe i2c-dev") == 0)
- usleep(200 * 1000); // and wait for the module to come up... 200ms
+ usleep(500 * 1000); // and wait for the module to come up... 200ms
if (!_ddc_probe()) return EINA_FALSE;