Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2e506a0f authored by Manu Abraham's avatar Manu Abraham Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (4158): Make ASIC RESET Conditional

parent ed3d1065
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -926,15 +926,15 @@ static int dst_get_device_id(struct dst_state *state)
static int dst_probe(struct dst_state *state)
{
	mutex_init(&state->dst_mutex);
	if (dst_addons & DST_TYPE_HAS_CA) {
		if ((rdc_8820_reset(state)) < 0) {
			dprintk(verbose, DST_ERROR, 1, "RDC 8820 RESET Failed.");
			return -1;
		}
	if (dst_addons & DST_TYPE_HAS_CA)
		msleep(4000);
	else
	} else {
		msleep(100);

	}
	if ((dst_comm_init(state)) < 0) {
		dprintk(verbose, DST_ERROR, 1, "DST Initialization Failed.");
		return -1;