diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-10 18:09:54 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-10 18:09:54 -0400 |
commit | 7ae0dea900b027cd90e8a3e14deca9a19e17638b (patch) | |
tree | 428cbe411bba90f6580ae21338276c949e91f23a /drivers/media/IR/Kconfig | |
parent | 6c74700fdb8e3bc34c31790384a8ec16c4fefd97 (diff) | |
parent | 560afa7d85bdfb294506afd3032c315e6827824f (diff) |
Merge branch 'v4l_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6
* 'v4l_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6: (94 commits)
V4L/DVB: tvp7002: fix write to H-PLL Feedback Divider LSB register
V4L/DVB: dvb: siano: free spinlock before schedule()
V4L/DVB: media: video: pvrusb2: remove custom hex_to_bin()
V4L/DVB: drivers: usbvideo: remove custom implementation of hex_to_bin()
V4L/DVB: Report supported QAM modes on bt8xx
V4L/DVB: media: ir-keytable: null dereference in debug code
V4L/DVB: ivtv: convert to the new control framework
V4L/DVB: ivtv: convert gpio subdev to new control framework
V4L/DVB: wm8739: convert to the new control framework
V4L/DVB: cs53l32a: convert to new control framework
V4L/DVB: wm8775: convert to the new control framework
V4L/DVB: cx2341x: convert to the control framework
V4L/DVB: cx25840: convert to the new control framework
V4L/DVB: cx25840/ivtv: replace ugly priv control with s_config
V4L/DVB: saa717x: convert to the new control framework
V4L/DVB: msp3400: convert to the new control framework
V4L/DVB: saa7115: convert to the new control framework
V4L/DVB: v4l2: hook up the new control framework into the core framework
V4L/DVB: Documentation: add v4l2-controls.txt documenting the new controls API
V4L/DVB: v4l2-ctrls: Whitespace cleanups
...
Diffstat (limited to 'drivers/media/IR/Kconfig')
-rw-r--r-- | drivers/media/IR/Kconfig | 36 |
1 files changed, 33 insertions, 3 deletions
diff --git a/drivers/media/IR/Kconfig b/drivers/media/IR/Kconfig index 999a8250b3ce..30e04915a256 100644 --- a/drivers/media/IR/Kconfig +++ b/drivers/media/IR/Kconfig | |||
@@ -1,8 +1,10 @@ | |||
1 | config IR_CORE | 1 | menuconfig IR_CORE |
2 | tristate | 2 | tristate "Infrared remote controller adapters" |
3 | depends on INPUT | 3 | depends on INPUT |
4 | default INPUT | 4 | default INPUT |
5 | 5 | ||
6 | if IR_CORE | ||
7 | |||
6 | config VIDEO_IR | 8 | config VIDEO_IR |
7 | tristate | 9 | tristate |
8 | depends on IR_CORE | 10 | depends on IR_CORE |
@@ -16,7 +18,7 @@ config LIRC | |||
16 | Enable this option to build the Linux Infrared Remote | 18 | Enable this option to build the Linux Infrared Remote |
17 | Control (LIRC) core device interface driver. The LIRC | 19 | Control (LIRC) core device interface driver. The LIRC |
18 | interface passes raw IR to and from userspace, where the | 20 | interface passes raw IR to and from userspace, where the |
19 | LIRC daemon handles protocol decoding for IR reception ann | 21 | LIRC daemon handles protocol decoding for IR reception and |
20 | encoding for IR transmitting (aka "blasting"). | 22 | encoding for IR transmitting (aka "blasting"). |
21 | 23 | ||
22 | source "drivers/media/IR/keymaps/Kconfig" | 24 | source "drivers/media/IR/keymaps/Kconfig" |
@@ -103,3 +105,31 @@ config IR_MCEUSB | |||
103 | 105 | ||
104 | To compile this driver as a module, choose M here: the | 106 | To compile this driver as a module, choose M here: the |
105 | module will be called mceusb. | 107 | module will be called mceusb. |
108 | |||
109 | config IR_ENE | ||
110 | tristate "ENE eHome Receiver/Transciever (pnp id: ENE0100/ENE02xxx)" | ||
111 | depends on PNP | ||
112 | depends on IR_CORE | ||
113 | ---help--- | ||
114 | Say Y here to enable support for integrated infrared receiver | ||
115 | /transciever made by ENE. | ||
116 | |||
117 | You can see if you have it by looking at lspnp output. | ||
118 | Output should include ENE0100 ENE0200 or something similiar. | ||
119 | |||
120 | To compile this driver as a module, choose M here: the | ||
121 | module will be called ene_ir. | ||
122 | |||
123 | config IR_STREAMZAP | ||
124 | tristate "Streamzap PC Remote IR Receiver" | ||
125 | depends on USB_ARCH_HAS_HCD | ||
126 | depends on IR_CORE | ||
127 | select USB | ||
128 | ---help--- | ||
129 | Say Y here if you want to use a Streamzap PC Remote | ||
130 | Infrared Receiver. | ||
131 | |||
132 | To compile this driver as a module, choose M here: the | ||
133 | module will be called streamzap. | ||
134 | |||
135 | endif #IR_CORE | ||