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.
This commit is contained in:
Carsten Haitzler 2021-07-04 12:34:58 +01:00
parent a197e3c1db
commit 32d642d338
1 changed files with 1 additions and 1 deletions

View File

@ -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;