diff options
author | Ulrich Eckhardt <uli-lirc@uli-eckhardt.de> | 2014-07-26 15:01:12 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-08-21 15:25:35 -0500 |
commit | 6ddc2be511a76e6c3f689f46155cb0f4c8f5876e (patch) | |
tree | ac632fd5e6f00c1209ebe07dcf8f023e3dd332a3 /drivers/media/rc/imon.c | |
parent | 7b5fc0714976aec5db5c4f8c66f12b23f5049b97 (diff) | |
download | linux-stable-6ddc2be511a76e6c3f689f46155cb0f4c8f5876e.tar.gz linux-stable-6ddc2be511a76e6c3f689f46155cb0f4c8f5876e.tar.bz2 linux-stable-6ddc2be511a76e6c3f689f46155cb0f4c8f5876e.zip |
[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/imon.c')
-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, scancode = be64_to_cpu(*((u64 *)buf)); ktype = IMON_KEY_PANEL; kc = imon_panel_key_lookup(ictx, scancode); + ictx->release_code = false; } else { scancode = be32_to_cpu(*((u32 *)buf)); if (ictx->rc_type == RC_BIT_RC6_MCE) { |