This patch adds NECx support to drivers/media/IR/ir-nec-decoder.c

Signed-off-by: David Härdeman <[email protected]>
---
 drivers/media/IR/ir-nec-decoder.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/drivers/media/IR/ir-nec-decoder.c 
b/drivers/media/IR/ir-nec-decoder.c
index f22d1af..d128c19 100644
--- a/drivers/media/IR/ir-nec-decoder.c
+++ b/drivers/media/IR/ir-nec-decoder.c
@@ -18,6 +18,7 @@
 #define NEC_NBITS              32
 #define NEC_UNIT               562500  /* ns */
 #define NEC_HEADER_PULSE       PULSE(16)
+#define NECX_HEADER_PULSE      PULSE(8) /* Less common NEC variant */
 #define NEC_HEADER_SPACE       SPACE(8)
 #define NEC_REPEAT_SPACE       SPACE(4)
 #define NEC_BIT_PULSE          PULSE(1)
@@ -152,7 +153,7 @@ static int ir_nec_decode(struct input_dev *input_dev, s64 
duration)
        switch (data->state) {
 
        case STATE_INACTIVE:
-               if (u == NEC_HEADER_PULSE) {
+               if (u == NEC_HEADER_PULSE || u == NECX_HEADER_PULSE) {
                        data->count = 0;
                        data->state = STATE_HEADER_SPACE;
                }

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to