This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/v4l-utils.git tree:
Subject: ir-keytable: Prints error if get key fails Author: Mauro Carvalho Chehab <[email protected]> Date: Sun Jan 23 13:12:55 2011 -0200 Signed-off-by: Mauro Carvalho Chehab <[email protected]> utils/keytable/keytable.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) --- http://git.linuxtv.org/v4l-utils.git?a=commitdiff;h=4f82af5f6558631ebf4295ac2ddaea7efe6304ca diff --git a/utils/keytable/keytable.c b/utils/keytable/keytable.c index ae89220..354de06 100644 --- a/utils/keytable/keytable.c +++ b/utils/keytable/keytable.c @@ -1210,6 +1210,8 @@ static void display_table(struct rc_device *rc_dev, int fd) codes[0] = (j << 8) | i; if (!ioctl(fd, EVIOCGKEYCODE, codes) && codes[1] != KEY_RESERVED) prtcode(codes); + else + perror("EVIOCGKEYCODE"); } } display_proto(rc_dev); _______________________________________________ linuxtv-commits mailing list [email protected] http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits
