Commit e27d3811 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

V4L/DVB (13612): IR: Move common IR code to drivers/media/IR



This is the first step of creating a common code for IR that can be
used by other input devices.

For now, keep IR dir at drivers/media, to easy the movement of the IR files,
but later patches may move it to drivers/IR or drivers/input/IR.

No functional changes is done on this patch.

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 909d15a7
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
config VIDEO_IR
	tristate
	depends on INPUT
	default INPUT
+3 −0
Original line number Diff line number Diff line
ir-common-objs  := ir-functions.o ir-keymaps.o ir-keytable.o

obj-$(CONFIG_VIDEO_IR) += ir-common.o
+1 −0
Original line number Diff line number Diff line
@@ -10,6 +10,7 @@
#define IR_TAB_MIN_SIZE	32
#define IR_TAB_MAX_SIZE	1024


/**
 * ir_seek_table() - returns the element order on the table
 * @rc_tab:	the ir_scancode_table with the keymap to be used
Loading