This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/media_tree.git tree:
Subject: [media] firedtv: fix remote control - addendum Author: Stefan Richter <[email protected]> Date: Mon Jan 17 17:07:56 2011 -0300 Dimitry notes that EV_SYN is also necessary between down and up, otherwise userspace could combine their state. Signed-off-by: Stefan Richter <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]> drivers/media/dvb/firewire/firedtv-rc.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) --- http://git.linuxtv.org/media_tree.git?a=commitdiff;h=1216e1dc8f87448464cf88adfaec9d3fbb4063e7 diff --git a/drivers/media/dvb/firewire/firedtv-rc.c b/drivers/media/dvb/firewire/firedtv-rc.c index 9bdc274..f82d4a9 100644 --- a/drivers/media/dvb/firewire/firedtv-rc.c +++ b/drivers/media/dvb/firewire/firedtv-rc.c @@ -190,6 +190,7 @@ void fdtv_handle_rc(struct firedtv *fdtv, unsigned int code) } input_report_key(idev, code, 1); + input_sync(idev); input_report_key(idev, code, 0); input_sync(idev); } _______________________________________________ linuxtv-commits mailing list [email protected] http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits
