v4l-utils: add patch to fix support for 'OTHER' protocol, thanks much to nektarios

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2011-03-23 10:27:11 +01:00
parent 8a9c2837a1
commit 44aca974d7

View File

@ -0,0 +1,12 @@
diff -Naur v4l-utils-0.8.3/utils/keytable/keytable.c v4l-utils-0.8.3.patch/utils/keytable/keytable.c
--- v4l-utils-0.8.3/utils/keytable/keytable.c 2011-02-09 23:04:27.000000000 +0100
+++ v4l-utils-0.8.3.patch/utils/keytable/keytable.c 2011-03-23 10:24:09.391305852 +0100
@@ -454,6 +454,8 @@
ch_proto |= SONY;
else if (!strcasecmp(p,"lirc"))
ch_proto |= LIRC;
+ else if (!strcasecmp(p,"other"))
+ ch_proto |= OTHER;
else
goto err_inval;
p = strtok(NULL, ",;");