aboutsummaryrefslogtreecommitdiff
path: root/drivers/media/IR/Makefile
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2010-03-24 20:47:53 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2010-05-18 00:52:59 -0300
commit995187bed30c0545e8da88372e9807da0a85911e (patch)
treee3e28eff10f8f01f1bfd7ff865a29076bf6700dc /drivers/media/IR/Makefile
parent9f1547829a6f39fe6b2da22653dff40502f3d568 (diff)
V4L/DVB: ir-core: dynamically load the compiled IR protocols
Instead of hardcoding the protocols into ir-core, add a register interface for the IR protocol decoders, and convert ir-nec-decoder into a client of ir-core. With this approach, it is possible to dynamically load the needed IR protocols, and to add a RAW IR interface module, registered as one IR raw protocol decoder. This patch opens a way to register a lirc_dev interface to work as an userspace IR protocol decoder. Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/IR/Makefile')
-rw-r--r--drivers/media/IR/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/media/IR/Makefile b/drivers/media/IR/Makefile
index 18794c7b0ea..6140b2712c8 100644
--- a/drivers/media/IR/Makefile
+++ b/drivers/media/IR/Makefile
@@ -1,5 +1,6 @@
ir-common-objs := ir-functions.o ir-keymaps.o
-ir-core-objs := ir-keytable.o ir-sysfs.o ir-raw-event.o ir-nec-decoder.o
+ir-core-objs := ir-keytable.o ir-sysfs.o ir-raw-event.o
obj-$(CONFIG_IR_CORE) += ir-core.o
obj-$(CONFIG_VIDEO_IR) += ir-common.o
+obj-$(CONFIG_IR_NEC_DECODER) += ir-nec-decoder.o