aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media
diff options
context:
space:
mode:
authorSean Young <sean@mess.org>2021-11-27 14:53:49 +0100
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>2021-12-14 15:09:12 +0100
commitb820c2cf0e8d81e5d7c7a547239ca199d0acefcd (patch)
treeace2827b157eeb388d7bcf39944371f586678906 /drivers/media
parentmedia: lirc: always send timeout reports (diff)
downloadlinux-dev-b820c2cf0e8d81e5d7c7a547239ca199d0acefcd.tar.xz
linux-dev-b820c2cf0e8d81e5d7c7a547239ca199d0acefcd.zip
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: Sean Young <sean@mess.org> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Diffstat (limited to 'drivers/media')
-rw-r--r--drivers/media/rc/iguanair.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/media/rc/iguanair.c b/drivers/media/rc/iguanair.c
index 84949baf9f6b..f8d080e41f4c 100644
--- a/drivers/media/rc/iguanair.c
+++ b/drivers/media/rc/iguanair.c
@@ -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));
}