diff options
| -rw-r--r-- | drivers/media/common/tuners/Kconfig | 28 | ||||
| -rw-r--r-- | drivers/media/common/tuners/Makefile | 4 | ||||
| -rw-r--r-- | drivers/media/common/tuners/mt2060.c (renamed from drivers/media/dvb/frontends/mt2060.c) | 0 | ||||
| -rw-r--r-- | drivers/media/common/tuners/mt2060.h (renamed from drivers/media/dvb/frontends/mt2060.h) | 0 | ||||
| -rw-r--r-- | drivers/media/common/tuners/mt2060_priv.h (renamed from drivers/media/dvb/frontends/mt2060_priv.h) | 0 | ||||
| -rw-r--r-- | drivers/media/common/tuners/mt2131.c (renamed from drivers/media/dvb/frontends/mt2131.c) | 0 | ||||
| -rw-r--r-- | drivers/media/common/tuners/mt2131.h (renamed from drivers/media/dvb/frontends/mt2131.h) | 0 | ||||
| -rw-r--r-- | drivers/media/common/tuners/mt2131_priv.h (renamed from drivers/media/dvb/frontends/mt2131_priv.h) | 0 | ||||
| -rw-r--r-- | drivers/media/common/tuners/mt2266.c (renamed from drivers/media/dvb/frontends/mt2266.c) | 0 | ||||
| -rw-r--r-- | drivers/media/common/tuners/mt2266.h (renamed from drivers/media/dvb/frontends/mt2266.h) | 0 | ||||
| -rw-r--r-- | drivers/media/common/tuners/qt1010.c (renamed from drivers/media/dvb/frontends/qt1010.c) | 0 | ||||
| -rw-r--r-- | drivers/media/common/tuners/qt1010.h (renamed from drivers/media/dvb/frontends/qt1010.h) | 0 | ||||
| -rw-r--r-- | drivers/media/common/tuners/qt1010_priv.h (renamed from drivers/media/dvb/frontends/qt1010_priv.h) | 0 | ||||
| -rw-r--r-- | drivers/media/dvb/frontends/Kconfig | 30 | ||||
| -rw-r--r-- | drivers/media/dvb/frontends/Makefile | 4 |
15 files changed, 33 insertions, 33 deletions
diff --git a/drivers/media/common/tuners/Kconfig b/drivers/media/common/tuners/Kconfig index 9a6a9022e970..e6926e9fa332 100644 --- a/drivers/media/common/tuners/Kconfig +++ b/drivers/media/common/tuners/Kconfig | |||
| @@ -99,6 +99,34 @@ config TUNER_MT20XX | |||
| 99 | help | 99 | help |
| 100 | Say Y here to include support for the MT2032 / MT2050 tuner. | 100 | Say Y here to include support for the MT2032 / MT2050 tuner. |
| 101 | 101 | ||
| 102 | config DVB_TUNER_MT2060 | ||
| 103 | tristate "Microtune MT2060 silicon IF tuner" | ||
| 104 | depends on I2C | ||
| 105 | default m if DVB_FE_CUSTOMISE | ||
| 106 | help | ||
| 107 | A driver for the silicon IF tuner MT2060 from Microtune. | ||
| 108 | |||
| 109 | config DVB_TUNER_MT2266 | ||
| 110 | tristate "Microtune MT2266 silicon tuner" | ||
| 111 | depends on I2C | ||
| 112 | default m if DVB_FE_CUSTOMISE | ||
| 113 | help | ||
| 114 | A driver for the silicon baseband tuner MT2266 from Microtune. | ||
| 115 | |||
| 116 | config DVB_TUNER_MT2131 | ||
| 117 | tristate "Microtune MT2131 silicon tuner" | ||
| 118 | depends on I2C | ||
| 119 | default m if DVB_FE_CUSTOMISE | ||
| 120 | help | ||
| 121 | A driver for the silicon baseband tuner MT2131 from Microtune. | ||
| 122 | |||
| 123 | config DVB_TUNER_QT1010 | ||
| 124 | tristate "Quantek QT1010 silicon tuner" | ||
| 125 | depends on DVB_CORE && I2C | ||
| 126 | default m if DVB_FE_CUSTOMISE | ||
| 127 | help | ||
| 128 | A driver for the silicon tuner QT1010 from Quantek. | ||
| 129 | |||
| 102 | config TUNER_XC2028 | 130 | config TUNER_XC2028 |
| 103 | tristate "XCeive xc2028/xc3028 tuners" | 131 | tristate "XCeive xc2028/xc3028 tuners" |
| 104 | depends on I2C && FW_LOADER | 132 | depends on I2C && FW_LOADER |
diff --git a/drivers/media/common/tuners/Makefile b/drivers/media/common/tuners/Makefile index 685ae64fa3b8..812864312628 100644 --- a/drivers/media/common/tuners/Makefile +++ b/drivers/media/common/tuners/Makefile | |||
| @@ -16,6 +16,10 @@ obj-$(CONFIG_TUNER_TDA9887) += tda9887.o | |||
| 16 | obj-$(CONFIG_DVB_TDA827X) += tda827x.o | 16 | obj-$(CONFIG_DVB_TDA827X) += tda827x.o |
| 17 | obj-$(CONFIG_DVB_TDA18271) += tda18271.o | 17 | obj-$(CONFIG_DVB_TDA18271) += tda18271.o |
| 18 | obj-$(CONFIG_DVB_TUNER_XC5000) += xc5000.o | 18 | obj-$(CONFIG_DVB_TUNER_XC5000) += xc5000.o |
| 19 | obj-$(CONFIG_DVB_TUNER_MT2060) += mt2060.o | ||
| 20 | obj-$(CONFIG_DVB_TUNER_MT2266) += mt2266.o | ||
| 21 | obj-$(CONFIG_DVB_TUNER_QT1010) += qt1010.o | ||
| 22 | obj-$(CONFIG_DVB_TUNER_MT2131) += mt2131.o | ||
| 19 | 23 | ||
| 20 | EXTRA_CFLAGS += -Idrivers/media/dvb/dvb-core | 24 | EXTRA_CFLAGS += -Idrivers/media/dvb/dvb-core |
| 21 | EXTRA_CFLAGS += -Idrivers/media/dvb/frontends | 25 | EXTRA_CFLAGS += -Idrivers/media/dvb/frontends |
diff --git a/drivers/media/dvb/frontends/mt2060.c b/drivers/media/common/tuners/mt2060.c index 1305b0e63ce5..1305b0e63ce5 100644 --- a/drivers/media/dvb/frontends/mt2060.c +++ b/drivers/media/common/tuners/mt2060.c | |||
diff --git a/drivers/media/dvb/frontends/mt2060.h b/drivers/media/common/tuners/mt2060.h index acba0058f519..acba0058f519 100644 --- a/drivers/media/dvb/frontends/mt2060.h +++ b/drivers/media/common/tuners/mt2060.h | |||
diff --git a/drivers/media/dvb/frontends/mt2060_priv.h b/drivers/media/common/tuners/mt2060_priv.h index 5eaccdefd0b0..5eaccdefd0b0 100644 --- a/drivers/media/dvb/frontends/mt2060_priv.h +++ b/drivers/media/common/tuners/mt2060_priv.h | |||
diff --git a/drivers/media/dvb/frontends/mt2131.c b/drivers/media/common/tuners/mt2131.c index e254bcfc2efb..e254bcfc2efb 100644 --- a/drivers/media/dvb/frontends/mt2131.c +++ b/drivers/media/common/tuners/mt2131.c | |||
diff --git a/drivers/media/dvb/frontends/mt2131.h b/drivers/media/common/tuners/mt2131.h index 606d8576bc98..606d8576bc98 100644 --- a/drivers/media/dvb/frontends/mt2131.h +++ b/drivers/media/common/tuners/mt2131.h | |||
diff --git a/drivers/media/dvb/frontends/mt2131_priv.h b/drivers/media/common/tuners/mt2131_priv.h index e930759c2c00..e930759c2c00 100644 --- a/drivers/media/dvb/frontends/mt2131_priv.h +++ b/drivers/media/common/tuners/mt2131_priv.h | |||
diff --git a/drivers/media/dvb/frontends/mt2266.c b/drivers/media/common/tuners/mt2266.c index 54b18f94b14b..54b18f94b14b 100644 --- a/drivers/media/dvb/frontends/mt2266.c +++ b/drivers/media/common/tuners/mt2266.c | |||
diff --git a/drivers/media/dvb/frontends/mt2266.h b/drivers/media/common/tuners/mt2266.h index c5113efe333c..c5113efe333c 100644 --- a/drivers/media/dvb/frontends/mt2266.h +++ b/drivers/media/common/tuners/mt2266.h | |||
diff --git a/drivers/media/dvb/frontends/qt1010.c b/drivers/media/common/tuners/qt1010.c index 825aa1412e6f..825aa1412e6f 100644 --- a/drivers/media/dvb/frontends/qt1010.c +++ b/drivers/media/common/tuners/qt1010.c | |||
diff --git a/drivers/media/dvb/frontends/qt1010.h b/drivers/media/common/tuners/qt1010.h index cff6a7ca5380..cff6a7ca5380 100644 --- a/drivers/media/dvb/frontends/qt1010.h +++ b/drivers/media/common/tuners/qt1010.h | |||
diff --git a/drivers/media/dvb/frontends/qt1010_priv.h b/drivers/media/common/tuners/qt1010_priv.h index 090cf475f099..090cf475f099 100644 --- a/drivers/media/dvb/frontends/qt1010_priv.h +++ b/drivers/media/common/tuners/qt1010_priv.h | |||
diff --git a/drivers/media/dvb/frontends/Kconfig b/drivers/media/dvb/frontends/Kconfig index 1486d96fd4b6..6d2384605927 100644 --- a/drivers/media/dvb/frontends/Kconfig +++ b/drivers/media/dvb/frontends/Kconfig | |||
| @@ -336,7 +336,7 @@ config DVB_S5H1411 | |||
| 336 | An ATSC 8VSB and QAM64/256 tuner module. Say Y when you want | 336 | An ATSC 8VSB and QAM64/256 tuner module. Say Y when you want |
| 337 | to support this frontend. | 337 | to support this frontend. |
| 338 | 338 | ||
| 339 | comment "Tuners/PLL support" | 339 | comment "Digital terrestrial only tuners/PLL" |
| 340 | depends on DVB_CORE | 340 | depends on DVB_CORE |
| 341 | 341 | ||
| 342 | config DVB_PLL | 342 | config DVB_PLL |
| @@ -347,34 +347,6 @@ config DVB_PLL | |||
| 347 | This module drives a number of tuners based on PLL chips with a | 347 | This module drives a number of tuners based on PLL chips with a |
| 348 | common I2C interface. Say Y when you want to support these tuners. | 348 | common I2C interface. Say Y when you want to support these tuners. |
| 349 | 349 | ||
| 350 | config DVB_TUNER_QT1010 | ||
| 351 | tristate "Quantek QT1010 silicon tuner" | ||
| 352 | depends on DVB_CORE && I2C | ||
| 353 | default m if DVB_FE_CUSTOMISE | ||
| 354 | help | ||
| 355 | A driver for the silicon tuner QT1010 from Quantek. | ||
| 356 | |||
| 357 | config DVB_TUNER_MT2060 | ||
| 358 | tristate "Microtune MT2060 silicon IF tuner" | ||
| 359 | depends on I2C | ||
| 360 | default m if DVB_FE_CUSTOMISE | ||
| 361 | help | ||
| 362 | A driver for the silicon IF tuner MT2060 from Microtune. | ||
| 363 | |||
| 364 | config DVB_TUNER_MT2266 | ||
| 365 | tristate "Microtune MT2266 silicon tuner" | ||
| 366 | depends on I2C | ||
| 367 | default m if DVB_FE_CUSTOMISE | ||
| 368 | help | ||
| 369 | A driver for the silicon baseband tuner MT2266 from Microtune. | ||
| 370 | |||
| 371 | config DVB_TUNER_MT2131 | ||
| 372 | tristate "Microtune MT2131 silicon tuner" | ||
| 373 | depends on I2C | ||
| 374 | default m if DVB_FE_CUSTOMISE | ||
| 375 | help | ||
| 376 | A driver for the silicon baseband tuner MT2131 from Microtune. | ||
| 377 | |||
| 378 | config DVB_TUNER_DIB0070 | 350 | config DVB_TUNER_DIB0070 |
| 379 | tristate "DiBcom DiB0070 silicon base-band tuner" | 351 | tristate "DiBcom DiB0070 silicon base-band tuner" |
| 380 | depends on I2C | 352 | depends on I2C |
diff --git a/drivers/media/dvb/frontends/Makefile b/drivers/media/dvb/frontends/Makefile index 9b4438a13d0b..a89dc0fc4c6f 100644 --- a/drivers/media/dvb/frontends/Makefile +++ b/drivers/media/dvb/frontends/Makefile | |||
| @@ -40,12 +40,8 @@ obj-$(CONFIG_DVB_ISL6405) += isl6405.o | |||
| 40 | obj-$(CONFIG_DVB_ISL6421) += isl6421.o | 40 | obj-$(CONFIG_DVB_ISL6421) += isl6421.o |
| 41 | obj-$(CONFIG_DVB_TDA10086) += tda10086.o | 41 | obj-$(CONFIG_DVB_TDA10086) += tda10086.o |
| 42 | obj-$(CONFIG_DVB_TDA826X) += tda826x.o | 42 | obj-$(CONFIG_DVB_TDA826X) += tda826x.o |
| 43 | obj-$(CONFIG_DVB_TUNER_MT2060) += mt2060.o | ||
| 44 | obj-$(CONFIG_DVB_TUNER_MT2266) += mt2266.o | ||
| 45 | obj-$(CONFIG_DVB_TUNER_DIB0070) += dib0070.o | 43 | obj-$(CONFIG_DVB_TUNER_DIB0070) += dib0070.o |
| 46 | obj-$(CONFIG_DVB_TUNER_QT1010) += qt1010.o | ||
| 47 | obj-$(CONFIG_DVB_TUA6100) += tua6100.o | 44 | obj-$(CONFIG_DVB_TUA6100) += tua6100.o |
| 48 | obj-$(CONFIG_DVB_TUNER_MT2131) += mt2131.o | ||
| 49 | obj-$(CONFIG_DVB_S5H1409) += s5h1409.o | 45 | obj-$(CONFIG_DVB_S5H1409) += s5h1409.o |
| 50 | obj-$(CONFIG_DVB_TUNER_ITD1000) += itd1000.o | 46 | obj-$(CONFIG_DVB_TUNER_ITD1000) += itd1000.o |
| 51 | obj-$(CONFIG_DVB_AU8522) += au8522.o | 47 | obj-$(CONFIG_DVB_AU8522) += au8522.o |
