1
0
mirror of https://github.com/DigitalDevices/dddvb.git synced 2023-10-10 13:37:43 +02:00

Ensure CAM stability after reset

Wait 2 secs in low level CI reset function as some CAMs become crazy
if we talk to them just after the reset (SmarDTV / TDT Premium).

from: faudebert-anevia authored and Richard Bérichon committed on Apr 2, 2012
This commit is contained in:
Ralph Metzler 2018-07-20 13:18:27 +02:00
parent 2808cf0d50
commit 43ab548777

View File

@ -590,6 +590,10 @@ static int slot_reset(struct dvb_ca_en50221 *ca, int slot)
}
}
mutex_unlock(&ci->lock);
/* Ensure cam stability after reset */
msleep(2000);
return 0;
}