This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/cgit.cgi/v4l-utils.git tree:
Subject: ir-keytable: fix a regression introduced by fe2aa5f767eba Author: Mauro Carvalho Chehab <[email protected]> Date: Sat Nov 15 18:56:42 2014 -0200 Changeset fe2aa5f767eba introduced a regression on RC6 based tables: they now announce the protocol as RC6_MCE. This causes failure when loading those two tables. Reported-by: Stephan Raue <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]> (cherry picked from commit 2d374130360c9efeb5244490076de81a97031197) utils/keytable/keytable.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --- http://git.linuxtv.org/cgit.cgi/v4l-utils.git/commit/?id=804168ce5ee18b31e82262d3db8dcbdb4191667d diff --git a/utils/keytable/keytable.c b/utils/keytable/keytable.c index 57e88a0..1f42316 100644 --- a/utils/keytable/keytable.c +++ b/utils/keytable/keytable.c @@ -226,7 +226,7 @@ static error_t parse_keyfile(char *fname, char **table) goto err_einval; if (!strcasecmp(p,"rc5") || !strcasecmp(p,"rc-5")) ch_proto |= RC_5; - else if (!strcasecmp(p,"rc6") || !strcasecmp(p,"rc-6")) + else if (!strcasecmp(p,"rc6") || !strcasecmp(p,"rc-6") || !strcasecmp(p,"rc6-mce") || !strcasecmp(p,"rc6_mce")) ch_proto |= RC_6; else if (!strcasecmp(p,"nec")) ch_proto |= NEC; _______________________________________________ linuxtv-commits mailing list [email protected] http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits
