aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/rc/Kconfig
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2012-07-30 13:22:44 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2012-07-30 13:22:44 -0400
commitc893e7c64e36087dceb4662917976a81d1754fc0 (patch)
tree30e441fe3e13fc8fcf9690bfe5222f404e19daa0 /drivers/media/rc/Kconfig
parentec3ed85f926f4e900bc48cec6e72abbe6475321f (diff)
parent2cefabc00ffdc1f22f960df946ae41b163081d5e (diff)
Merge branch 'patches_for_v3.6' into v4l_for_linus
* patches_for_v3.6: (174 commits) v4l: Export v4l2-common.h in include/linux/Kbuild media: Revert "[media] Terratec Cinergy S2 USB HD Rev.2" [media] media: Use pr_info not homegrown pr_reg macro [media] Terratec Cinergy S2 USB HD Rev.2 [media] v4l: Correct conflicting V4L2 subdev selection API documentation [media] Feature removal: V4L2 selections API target and flag definitions [media] v4l: Unify selection flags documentation [media] v4l: Unify selection flags [media] v4l: Common documentation for selection targets [media] v4l: Unify selection targets across V4L2 and V4L2 subdev interfaces [media] v4l: Remove "_ACTUAL" from subdev selection API target definition names [media] V4L: Remove "_ACTIVE" from the selection target name definitions [media] media: dvb-usb: print mac address via native %pM [media] s5p-tv: Use module_i2c_driver in sii9234_drv.c file [media] media: gpio-ir-recv: add allowed_protos for platform data [media] s5p-jpeg: Use module_platform_driver in jpeg-core.c file [media] saa7134: fix spelling of detach in label [media] cx88-blackbird: replace ioctl by unlocked_ioctl [media] cx88: don't use current_norm [media] cx88: fix a number of v4l2-compliance violations ...
Diffstat (limited to 'drivers/media/rc/Kconfig')
-rw-r--r--drivers/media/rc/Kconfig49
1 files changed, 27 insertions, 22 deletions
diff --git a/drivers/media/rc/Kconfig b/drivers/media/rc/Kconfig
index f97eeb870455..908ef70430e9 100644
--- a/drivers/media/rc/Kconfig
+++ b/drivers/media/rc/Kconfig
@@ -1,21 +1,20 @@
1menuconfig RC_CORE 1config RC_CORE
2 tristate "Remote Controller adapters" 2 tristate
3 depends on MEDIA_RC_SUPPORT
3 depends on INPUT 4 depends on INPUT
4 default INPUT 5 default y
5 ---help---
6 Enable support for Remote Controllers on Linux. This is
7 needed in order to support several video capture adapters,
8 standalone IR receivers/transmitters, and RF receivers.
9 6
10 Enable this option if you have a video capture board even 7source "drivers/media/rc/keymaps/Kconfig"
11 if you don't need IR, as otherwise, you may not be able to
12 compile the driver for your adapter.
13 8
14if RC_CORE 9menuconfig RC_DECODERS
10 bool "Remote controller decoders"
11 depends on RC_CORE
12 default y
15 13
14if RC_DECODERS
16config LIRC 15config LIRC
17 tristate 16 tristate "LIRC interface driver"
18 default y 17 depends on RC_CORE
19 18
20 ---help--- 19 ---help---
21 Enable this option to build the Linux Infrared Remote 20 Enable this option to build the Linux Infrared Remote
@@ -24,7 +23,16 @@ config LIRC
24 LIRC daemon handles protocol decoding for IR reception and 23 LIRC daemon handles protocol decoding for IR reception and
25 encoding for IR transmitting (aka "blasting"). 24 encoding for IR transmitting (aka "blasting").
26 25
27source "drivers/media/rc/keymaps/Kconfig" 26config IR_LIRC_CODEC
27 tristate "Enable IR to LIRC bridge"
28 depends on RC_CORE
29 depends on LIRC
30 default y
31
32 ---help---
33 Enable this option to pass raw IR to and from userspace via
34 the LIRC interface.
35
28 36
29config IR_NEC_DECODER 37config IR_NEC_DECODER
30 tristate "Enable IR raw decoder for the NEC protocol" 38 tristate "Enable IR raw decoder for the NEC protocol"
@@ -108,16 +116,13 @@ config IR_MCE_KBD_DECODER
108 Enable this option if you have a Microsoft Remote Keyboard for 116 Enable this option if you have a Microsoft Remote Keyboard for
109 Windows Media Center Edition, which you would like to use with 117 Windows Media Center Edition, which you would like to use with
110 a raw IR receiver in your system. 118 a raw IR receiver in your system.
119endif #RC_DECODERS
111 120
112config IR_LIRC_CODEC 121menuconfig RC_DEVICES
113 tristate "Enable IR to LIRC bridge" 122 bool "Remote Controller devices"
114 depends on RC_CORE 123 depends on RC_CORE
115 depends on LIRC
116 default y
117 124
118 ---help--- 125if RC_DEVICES
119 Enable this option to pass raw IR to and from userspace via
120 the LIRC interface.
121 126
122config RC_ATI_REMOTE 127config RC_ATI_REMOTE
123 tristate "ATI / X10 based USB RF remote controls" 128 tristate "ATI / X10 based USB RF remote controls"
@@ -276,4 +281,4 @@ config IR_GPIO_CIR
276 To compile this driver as a module, choose M here: the module will 281 To compile this driver as a module, choose M here: the module will
277 be called gpio-ir-recv. 282 be called gpio-ir-recv.
278 283
279endif #RC_CORE 284endif #RC_DEVICES