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).
This commit is contained in:
Florent Audebert 2012-04-02 12:37:12 +02:00 committed by Richard Bérichon
parent 3c05e73692
commit cb4834cca0

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