diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2006-04-01 16:00:41 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-04-02 03:56:03 -0400 |
commit | 2868c41fc45399b0f0855eb760e1a81881ff0c3d (patch) | |
tree | e8e2ad7b1ba9fa8dfa217d72ace934e0a50761cc /drivers/media | |
parent | 86f40cc3c994822ffeb226753526d87be21bd79a (diff) |
V4L/DVB (3689): Kconfig: fix VP-3054 Secondary I2C Bus build configuration menu dependencies
This patch fixes a dependency problem that affected the indentation order
within the individual frontend selection support menus for cx88-dvb.
- created a boolean dependency link for VIDEO_CX88_VP3054, so that
it's tristate value will be the same as that of VIDEO_CX88_DVB.
- VIDEO_CX88_VP3054 is automatically selected by VIDEO_CX88_DVB_ALL_FRONTENDS,
but is otherwise selected by VIDEO_CX88_DVB_VP3054, offered as an option
under VIDEO_CX88_DVB_MT352
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/video/cx88/Kconfig | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/drivers/media/video/cx88/Kconfig b/drivers/media/video/cx88/Kconfig index 2c586f9033b2..630273992a41 100644 --- a/drivers/media/video/cx88/Kconfig +++ b/drivers/media/video/cx88/Kconfig | |||
@@ -1,3 +1,7 @@ | |||
1 | config VIDEO_CX88_VP3054 | ||
2 | tristate | ||
3 | depends on VIDEO_CX88_DVB && DVB_MT352 | ||
4 | |||
1 | config VIDEO_CX88 | 5 | config VIDEO_CX88 |
2 | tristate "Conexant 2388x (bt878 successor) support" | 6 | tristate "Conexant 2388x (bt878 successor) support" |
3 | depends on VIDEO_DEV && PCI && I2C | 7 | depends on VIDEO_DEV && PCI && I2C |
@@ -73,10 +77,11 @@ config VIDEO_CX88_DVB_MT352 | |||
73 | This adds DVB-T support for cards based on the | 77 | This adds DVB-T support for cards based on the |
74 | Connexant 2388x chip and the MT352 demodulator. | 78 | Connexant 2388x chip and the MT352 demodulator. |
75 | 79 | ||
76 | config VIDEO_CX88_VP3054 | 80 | config VIDEO_CX88_DVB_VP3054 |
77 | tristate "VP-3054 Secondary I2C Bus Support" | 81 | bool "VP-3054 Secondary I2C Bus Support" |
78 | default m | 82 | default y |
79 | depends on DVB_MT352 | 83 | depends on VIDEO_CX88_DVB_MT352 |
84 | select VIDEO_CX88_VP3054 | ||
80 | ---help--- | 85 | ---help--- |
81 | This adds DVB-T support for cards based on the | 86 | This adds DVB-T support for cards based on the |
82 | Connexant 2388x chip and the MT352 demodulator, | 87 | Connexant 2388x chip and the MT352 demodulator, |