Commit b820c2cf authored by Sean Young's avatar Sean Young Committed by Mauro Carvalho Chehab
Browse files

media: iguanair: no need for reset after IR receiver enable



An IR reset is only used when the IR hardware reports an error.

Signed-off-by: default avatarSean Young <sean@mess.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent 74747dda
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -262,9 +262,6 @@ static int iguanair_receiver(struct iguanair *ir, bool enable)
	ir->packet->header.direction = DIR_OUT;
	ir->packet->header.cmd = enable ? CMD_RECEIVER_ON : CMD_RECEIVER_OFF;

	if (enable)
		ir_raw_event_reset(ir->rc);

	return iguanair_send(ir, sizeof(ir->packet->header));
}