diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-03-20 20:59:44 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-05-18 00:52:56 -0300 |
commit | a3572c34da8dacc78a629211a91cf34e9b408701 (patch) | |
tree | 281efd4d69b68bd4720668fd91cfcf16d1ed3089 /drivers/media/IR/Makefile | |
parent | 0210894956cf57d525d56341cc3e0f3d5d2db659 (diff) | |
download | kernel_samsung_espresso10-a3572c34da8dacc78a629211a91cf34e9b408701.zip kernel_samsung_espresso10-a3572c34da8dacc78a629211a91cf34e9b408701.tar.gz kernel_samsung_espresso10-a3572c34da8dacc78a629211a91cf34e9b408701.tar.bz2 |
V4L/DVB: ir-core: Add logic to decode IR protocols at the IR core
Adds a method to pass IR raw pulse/code events into ir-core. This is
needed in order to support LIRC. It also helps to move common code
from the drivers into the core.
In order to allow testing, it implements a simple NEC protocol decoder
at ir-nec-decoder.c file. The logic is about the same used at saa7134
driver that handles Avermedia M135A and Encore FM53 boards.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/IR/Makefile')
-rw-r--r-- | drivers/media/IR/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/IR/Makefile b/drivers/media/IR/Makefile index 171890e..18794c7 100644 --- a/drivers/media/IR/Makefile +++ b/drivers/media/IR/Makefile @@ -1,5 +1,5 @@ ir-common-objs := ir-functions.o ir-keymaps.o -ir-core-objs := ir-keytable.o ir-sysfs.o +ir-core-objs := ir-keytable.o ir-sysfs.o ir-raw-event.o ir-nec-decoder.o obj-$(CONFIG_IR_CORE) += ir-core.o obj-$(CONFIG_VIDEO_IR) += ir-common.o |