diff options
author | Michael Krufky <mkrufky@m1k.net> | 2005-11-09 00:38:07 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-09 10:56:24 -0500 |
commit | f6d6e6dbdfcfc9d56550744068c2a9918798b773 (patch) | |
tree | 8cc46a2397f9ea7e640d87ac71dbeb5b83818622 /drivers/media/video/cx88/Kconfig | |
parent | a38a7d4ff8539817691a335149cac903be4250f8 (diff) |
[PATCH] v4l: 842: create kconfig files for cx88 and saa7134 directories
- Create Kconfig files for cx88 and saa7134 directories.
Signed-off-by: Michael Krufky <mkrufky@m1k.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/media/video/cx88/Kconfig')
-rw-r--r-- | drivers/media/video/cx88/Kconfig | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/drivers/media/video/cx88/Kconfig b/drivers/media/video/cx88/Kconfig new file mode 100644 index 000000000000..3c912152121b --- /dev/null +++ b/drivers/media/video/cx88/Kconfig | |||
@@ -0,0 +1,81 @@ | |||
1 | config VIDEO_CX88 | ||
2 | tristate "Conexant 2388x (bt878 successor) support" | ||
3 | depends on VIDEO_DEV && PCI && I2C && EXPERIMENTAL | ||
4 | select I2C_ALGOBIT | ||
5 | select FW_LOADER | ||
6 | select VIDEO_BTCX | ||
7 | select VIDEO_BUF | ||
8 | select VIDEO_TUNER | ||
9 | select VIDEO_TVEEPROM | ||
10 | select VIDEO_IR | ||
11 | ---help--- | ||
12 | This is a video4linux driver for Conexant 2388x based | ||
13 | TV cards. | ||
14 | |||
15 | To compile this driver as a module, choose M here: the | ||
16 | module will be called cx8800 | ||
17 | |||
18 | config VIDEO_CX88_DVB | ||
19 | tristate "DVB/ATSC Support for cx2388x based TV cards" | ||
20 | depends on VIDEO_CX88 && DVB_CORE | ||
21 | select VIDEO_BUF_DVB | ||
22 | ---help--- | ||
23 | This adds support for DVB/ATSC cards based on the | ||
24 | Connexant 2388x chip. | ||
25 | |||
26 | To compile this driver as a module, choose M here: the | ||
27 | module will be called cx88-dvb. | ||
28 | |||
29 | You must also select one or more DVB/ATSC demodulators. | ||
30 | If you are unsure which you need, choose all of them. | ||
31 | |||
32 | config VIDEO_CX88_DVB_ALL_FRONTENDS | ||
33 | bool "Build all supported frontends for cx2388x based TV cards" | ||
34 | default y | ||
35 | depends on VIDEO_CX88_DVB | ||
36 | select DVB_MT352 | ||
37 | select DVB_OR51132 | ||
38 | select DVB_CX22702 | ||
39 | select DVB_LGDT330X | ||
40 | ---help--- | ||
41 | This builds cx88-dvb with all currently supported frontend | ||
42 | demodulators. If you wish to tweak your configuration, and | ||
43 | only include support for the hardware that you need, choose N here. | ||
44 | |||
45 | If you are unsure, choose Y. | ||
46 | |||
47 | config VIDEO_CX88_DVB_MT352 | ||
48 | tristate "Zarlink MT352 DVB-T Support" | ||
49 | default m | ||
50 | depends on VIDEO_CX88_DVB && !VIDEO_CX88_DVB_ALL_FRONTENDS | ||
51 | select DVB_MT352 | ||
52 | ---help--- | ||
53 | This adds DVB-T support for cards based on the | ||
54 | Connexant 2388x chip and the MT352 demodulator. | ||
55 | |||
56 | config VIDEO_CX88_DVB_OR51132 | ||
57 | tristate "OR51132 ATSC Support" | ||
58 | default m | ||
59 | depends on VIDEO_CX88_DVB && !VIDEO_CX88_DVB_ALL_FRONTENDS | ||
60 | select DVB_OR51132 | ||
61 | ---help--- | ||
62 | This adds ATSC 8VSB and QAM64/256 support for cards based on the | ||
63 | Connexant 2388x chip and the OR51132 demodulator. | ||
64 | |||
65 | config VIDEO_CX88_DVB_CX22702 | ||
66 | tristate "Conexant CX22702 DVB-T Support" | ||
67 | default m | ||
68 | depends on VIDEO_CX88_DVB && !VIDEO_CX88_DVB_ALL_FRONTENDS | ||
69 | select DVB_CX22702 | ||
70 | ---help--- | ||
71 | This adds DVB-T support for cards based on the | ||
72 | Connexant 2388x chip and the CX22702 demodulator. | ||
73 | |||
74 | config VIDEO_CX88_DVB_LGDT330X | ||
75 | tristate "LG Electronics DT3302/DT3303 ATSC Support" | ||
76 | default m | ||
77 | depends on VIDEO_CX88_DVB && !VIDEO_CX88_DVB_ALL_FRONTENDS | ||
78 | select DVB_LGDT330X | ||
79 | ---help--- | ||
80 | This adds ATSC 8VSB and QAM64/256 support for cards based on the | ||
81 | Connexant 2388x chip and the LGDT3302/LGDT3303 demodulator. | ||