1398ae1fe6
There are several Kconfig items using CUSTOMIZE. Yet, most use the English writing CUSTOMISE. This generates lots of trouble, because people sometimes type the Kbuild item different. Let's standardise every occurrence using the same syntax. The changes were generated by this small shell script: for i in `find linux -type f`; do sed s,CUSTOMIZE,CUSTOMISE,g $i >/tmp/a && mv /tmp/a $i; done Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
15 lines
521 B
Text
15 lines
521 B
Text
|
|
config VIDEO_AU0828
|
|
tristate "Auvitek AU0828 support"
|
|
depends on I2C && INPUT && DVB_CORE && USB && VIDEO_V4L2
|
|
select I2C_ALGOBIT
|
|
select VIDEO_TVEEPROM
|
|
select DVB_AU8522 if !DVB_FE_CUSTOMISE
|
|
select MEDIA_TUNER_XC5000 if !MEDIA_TUNER_CUSTOMISE
|
|
select MEDIA_TUNER_MXL5007T if !MEDIA_TUNER_CUSTOMISE
|
|
select MEDIA_TUNER_TDA18271 if !MEDIA_TUNER_CUSTOMISE
|
|
---help---
|
|
This is a video4linux driver for Auvitek's USB device.
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
module will be called au0828
|