forked from luck/tmp_suning_uos_patched
8b21c1e90e
When the tuner modules were moved to common/tuners, a separate customize option were added for tuners. However, the automatic selection of the tuners were still using the older option. This causes that the automatic selection to fail, if DVB_FE_CUSTOMISE is selected. Also, since those tuners are now under MEDIA_TUNER_CUSTOMIZE menu, if you unset MEDIA_TUNER_CUSTOMIZE, you can't manually select the tuners. This patch fixes this error by replacing DVB_FE_CUSTOMISE by MEDIA_TUNER_CUSTOMIZE on all places were a tuner is selected. The patch were generated by this small script: for i in `find drivers/media -name Kconfig`; do cat $i|perl -ne 's/(MEDIA_TUNER.*)DVB_FE_CUSTOMISE/\1MEDIA_TUNER_CUSTOMIZE/; print $_' >a mv a $i done Also, manually reordered the tuner entries. Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
31 lines
993 B
Plaintext
31 lines
993 B
Plaintext
config VIDEO_CX23885
|
|
tristate "Conexant cx23885 (2388x successor) support"
|
|
depends on DVB_CORE && VIDEO_DEV && PCI && I2C && INPUT
|
|
select I2C_ALGOBIT
|
|
select VIDEO_BTCX
|
|
select VIDEO_TUNER
|
|
select VIDEO_TVEEPROM
|
|
select VIDEO_IR
|
|
select VIDEOBUF_DVB
|
|
select VIDEOBUF_DMA_SG
|
|
select VIDEO_CX25840
|
|
select VIDEO_CX2341X
|
|
select DVB_DIB7000P if !DVB_FE_CUSTOMISE
|
|
select DVB_S5H1409 if !DVB_FE_CUSTOMISE
|
|
select DVB_S5H1411 if !DVB_FE_CUSTOMISE
|
|
select DVB_LGDT330X if !DVB_FE_CUSTOMISE
|
|
select DVB_ZL10353 if !DVB_FE_CUSTOMISE
|
|
select DVB_TDA10048 if !DVB_FE_CUSTOMIZE
|
|
select MEDIA_TUNER_MT2131 if !MEDIA_TUNER_CUSTOMIZE
|
|
select MEDIA_TUNER_XC2028 if !DVB_FE_CUSTOMIZE
|
|
select MEDIA_TUNER_TDA8290 if !DVB_FE_CUSTOMIZE
|
|
select MEDIA_TUNER_TDA18271 if !DVB_FE_CUSTOMIZE
|
|
select MEDIA_TUNER_XC5000 if !DVB_FE_CUSTOMIZE
|
|
---help---
|
|
This is a video4linux driver for Conexant 23885 based
|
|
TV cards.
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
module will be called cx23885
|
|
|