diff options
author | Ulrich Eckhardt <uli-lirc@uli-eckhardt.de> | 2014-07-26 14:01:12 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-08-21 16:25:35 -0400 |
commit | 6ddc2be511a76e6c3f689f46155cb0f4c8f5876e (patch) | |
tree | ac632fd5e6f00c1209ebe07dcf8f023e3dd332a3 /drivers/media/rc | |
parent | 7b5fc0714976aec5db5c4f8c66f12b23f5049b97 (diff) |
[media] imon: Fix not working front panel
Make the front panel buttons working after another button on the
remote was pressed.
Signed-off-by: Ulrich Eckhardt <uli@uli-eckhardt.de>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'drivers/media/rc')
-rw-r--r-- | drivers/media/rc/imon.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/media/rc/imon.c b/drivers/media/rc/imon.c index c91e9709b47e..3d8f515be3c1 100644 --- a/drivers/media/rc/imon.c +++ b/drivers/media/rc/imon.c | |||
@@ -1610,6 +1610,7 @@ static void imon_incoming_packet(struct imon_context *ictx, | |||
1610 | scancode = be64_to_cpu(*((u64 *)buf)); | 1610 | scancode = be64_to_cpu(*((u64 *)buf)); |
1611 | ktype = IMON_KEY_PANEL; | 1611 | ktype = IMON_KEY_PANEL; |
1612 | kc = imon_panel_key_lookup(ictx, scancode); | 1612 | kc = imon_panel_key_lookup(ictx, scancode); |
1613 | ictx->release_code = false; | ||
1613 | } else { | 1614 | } else { |
1614 | scancode = be32_to_cpu(*((u32 *)buf)); | 1615 | scancode = be32_to_cpu(*((u32 *)buf)); |
1615 | if (ictx->rc_type == RC_BIT_RC6_MCE) { | 1616 | if (ictx->rc_type == RC_BIT_RC6_MCE) { |