* [PATCH 0/4] V4L/DVB: Select correct frontends and tuners
@ 2010-05-15 16:43 Ben Hutchings
2010-05-15 16:45 ` [PATCH 1/4] V4L/DVB: dw2102: Select tda10023 frontend, not tda10021 Ben Hutchings
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Ben Hutchings @ 2010-05-15 16:43 UTC (permalink / raw)
To: Mauro Carvalho Chehab; +Cc: linux-media
[-- Attachment #1: Type: text/plain, Size: 468 bytes --]
I found a few more drivers that don't select the same frontends and
tuners that they reference.
Ben.
Ben Hutchings (4):
V4L/DVB: dw2102: Select tda10023 frontend, not tda10021
V4L/DVB: budget: Select correct frontends
V4L/DVB: dib0700: Select dib0090 frontend
V4L/DVB: m920x: Select simple tuner
drivers/media/dvb/dvb-usb/Kconfig | 4 +++-
drivers/media/dvb/ttpci/Kconfig | 5 +++--
2 files changed, 6 insertions(+), 3 deletions(-)
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 828 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/4] V4L/DVB: dw2102: Select tda10023 frontend, not tda10021
2010-05-15 16:43 [PATCH 0/4] V4L/DVB: Select correct frontends and tuners Ben Hutchings
@ 2010-05-15 16:45 ` Ben Hutchings
2010-05-15 16:45 ` [PATCH 2/4] V4L/DVB: budget: Select correct frontends Ben Hutchings
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Ben Hutchings @ 2010-05-15 16:45 UTC (permalink / raw)
To: Mauro Carvalho Chehab; +Cc: linux-media
Update the Kconfig selections to match the code.
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
---
drivers/media/dvb/dvb-usb/Kconfig | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/media/dvb/dvb-usb/Kconfig b/drivers/media/dvb/dvb-usb/Kconfig
index e5f91f1..cfcbf4f 100644
--- a/drivers/media/dvb/dvb-usb/Kconfig
+++ b/drivers/media/dvb/dvb-usb/Kconfig
@@ -264,7 +264,7 @@ config DVB_USB_DW2102
select DVB_STB6000 if !DVB_FE_CUSTOMISE
select DVB_CX24116 if !DVB_FE_CUSTOMISE
select DVB_SI21XX if !DVB_FE_CUSTOMISE
- select DVB_TDA10021 if !DVB_FE_CUSTOMISE
+ select DVB_TDA10023 if !DVB_FE_CUSTOMISE
select DVB_MT312 if !DVB_FE_CUSTOMISE
select DVB_ZL10039 if !DVB_FE_CUSTOMISE
select DVB_DS3000 if !DVB_FE_CUSTOMISE
--
1.7.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 2/4] V4L/DVB: budget: Select correct frontends
2010-05-15 16:43 [PATCH 0/4] V4L/DVB: Select correct frontends and tuners Ben Hutchings
2010-05-15 16:45 ` [PATCH 1/4] V4L/DVB: dw2102: Select tda10023 frontend, not tda10021 Ben Hutchings
@ 2010-05-15 16:45 ` Ben Hutchings
2010-05-15 16:45 ` [PATCH 3/4] V4L/DVB: dib0700: Select dib0090 frontend Ben Hutchings
2010-05-15 16:46 ` [PATCH 4/4] V4L/DVB: m920x: Select simple tuner Ben Hutchings
3 siblings, 0 replies; 5+ messages in thread
From: Ben Hutchings @ 2010-05-15 16:45 UTC (permalink / raw)
To: Mauro Carvalho Chehab; +Cc: linux-media
Update the Kconfig selections to match the code.
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
---
drivers/media/dvb/ttpci/Kconfig | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/media/dvb/ttpci/Kconfig b/drivers/media/dvb/ttpci/Kconfig
index d8d4214..32a7ec6 100644
--- a/drivers/media/dvb/ttpci/Kconfig
+++ b/drivers/media/dvb/ttpci/Kconfig
@@ -68,13 +68,14 @@ config DVB_BUDGET
select DVB_VES1820 if !DVB_FE_CUSTOMISE
select DVB_L64781 if !DVB_FE_CUSTOMISE
select DVB_TDA8083 if !DVB_FE_CUSTOMISE
- select DVB_TDA10021 if !DVB_FE_CUSTOMISE
- select DVB_TDA10023 if !DVB_FE_CUSTOMISE
select DVB_S5H1420 if !DVB_FE_CUSTOMISE
select DVB_TDA10086 if !DVB_FE_CUSTOMISE
select DVB_TDA826X if !DVB_FE_CUSTOMISE
select DVB_LNBP21 if !DVB_FE_CUSTOMISE
select DVB_TDA1004X if !DVB_FE_CUSTOMISE
+ select DVB_ISL6423 if !DVB_FE_CUSTOMISE
+ select DVB_STV090x if !DVB_FE_CUSTOMISE
+ select DVB_STV6110x if !DVB_FE_CUSTOMISE
help
Support for simple SAA7146 based DVB cards (so called Budget-
or Nova-PCI cards) without onboard MPEG2 decoder, and without
--
1.7.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 3/4] V4L/DVB: dib0700: Select dib0090 frontend
2010-05-15 16:43 [PATCH 0/4] V4L/DVB: Select correct frontends and tuners Ben Hutchings
2010-05-15 16:45 ` [PATCH 1/4] V4L/DVB: dw2102: Select tda10023 frontend, not tda10021 Ben Hutchings
2010-05-15 16:45 ` [PATCH 2/4] V4L/DVB: budget: Select correct frontends Ben Hutchings
@ 2010-05-15 16:45 ` Ben Hutchings
2010-05-15 16:46 ` [PATCH 4/4] V4L/DVB: m920x: Select simple tuner Ben Hutchings
3 siblings, 0 replies; 5+ messages in thread
From: Ben Hutchings @ 2010-05-15 16:45 UTC (permalink / raw)
To: Mauro Carvalho Chehab; +Cc: linux-media
Update the Kconfig selections to match the code.
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
---
drivers/media/dvb/dvb-usb/Kconfig | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/drivers/media/dvb/dvb-usb/Kconfig b/drivers/media/dvb/dvb-usb/Kconfig
index cfcbf4f..73a6e9d 100644
--- a/drivers/media/dvb/dvb-usb/Kconfig
+++ b/drivers/media/dvb/dvb-usb/Kconfig
@@ -76,6 +76,7 @@ config DVB_USB_DIB0700
select DVB_S5H1411 if !DVB_FE_CUSTOMISE
select DVB_LGDT3305 if !DVB_FE_CUSTOMISE
select DVB_TUNER_DIB0070 if !DVB_FE_CUSTOMISE
+ select DVB_TUNER_DIB0090 if !DVB_FE_CUSTOMISE
select MEDIA_TUNER_MT2060 if !MEDIA_TUNER_CUSTOMISE
select MEDIA_TUNER_MT2266 if !MEDIA_TUNER_CUSTOMISE
select MEDIA_TUNER_XC2028 if !MEDIA_TUNER_CUSTOMISE
--
1.7.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 4/4] V4L/DVB: m920x: Select simple tuner
2010-05-15 16:43 [PATCH 0/4] V4L/DVB: Select correct frontends and tuners Ben Hutchings
` (2 preceding siblings ...)
2010-05-15 16:45 ` [PATCH 3/4] V4L/DVB: dib0700: Select dib0090 frontend Ben Hutchings
@ 2010-05-15 16:46 ` Ben Hutchings
3 siblings, 0 replies; 5+ messages in thread
From: Ben Hutchings @ 2010-05-15 16:46 UTC (permalink / raw)
To: Mauro Carvalho Chehab; +Cc: linux-media
Update the Kconfig selections to match the code.
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
---
drivers/media/dvb/dvb-usb/Kconfig | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/drivers/media/dvb/dvb-usb/Kconfig b/drivers/media/dvb/dvb-usb/Kconfig
index 73a6e9d..553b48a 100644
--- a/drivers/media/dvb/dvb-usb/Kconfig
+++ b/drivers/media/dvb/dvb-usb/Kconfig
@@ -135,6 +135,7 @@ config DVB_USB_M920X
select DVB_TDA1004X if !DVB_FE_CUSTOMISE
select MEDIA_TUNER_QT1010 if !MEDIA_TUNER_CUSTOMISE
select MEDIA_TUNER_TDA827X if !MEDIA_TUNER_CUSTOMISE
+ select MEDIA_TUNER_SIMPLE if !MEDIA_TUNER_CUSTOMISE
help
Say Y here to support the MSI Mega Sky 580 USB2.0 DVB-T receiver.
Currently, only devices with a product id of
--
1.7.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2010-05-15 16:46 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-15 16:43 [PATCH 0/4] V4L/DVB: Select correct frontends and tuners Ben Hutchings
2010-05-15 16:45 ` [PATCH 1/4] V4L/DVB: dw2102: Select tda10023 frontend, not tda10021 Ben Hutchings
2010-05-15 16:45 ` [PATCH 2/4] V4L/DVB: budget: Select correct frontends Ben Hutchings
2010-05-15 16:45 ` [PATCH 3/4] V4L/DVB: dib0700: Select dib0090 frontend Ben Hutchings
2010-05-15 16:46 ` [PATCH 4/4] V4L/DVB: m920x: Select simple tuner Ben Hutchings
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.