All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Kconfig for radio cards to allow VIDEO_V4L1_COMPAT
@ 2006-06-25 17:40 Jon Smirl
  2006-06-25 18:21 ` Sam Ravnborg
  2006-06-26 13:06 ` Mauro Carvalho Chehab
  0 siblings, 2 replies; 12+ messages in thread
From: Jon Smirl @ 2006-06-25 17:40 UTC (permalink / raw)
  To: lkml

In Kconfig all of the radio cards depend on VIDEO_V4L1. But V4L1 has
been deprecated and replaced with V4L2. V4L2 offers a V4L1
compatibility layer. Should the Kconfig for these devices be changed
to depend on (VIDEO_V4L1. || VIDEO_V4L1_COMPAT)? I'm not the
maintainer for this but they seem to build ok.

Signed-off-by: Jon Smirl <jonsmirl@gmail.com>

-- 
Jon Smirl
jonsmirl@gmail.com



diff --git a/drivers/media/radio/Kconfig b/drivers/media/radio/Kconfig
index 3fff757..efa27f3 100644
--- a/drivers/media/radio/Kconfig
+++ b/drivers/media/radio/Kconfig
@@ -7,7 +7,7 @@ menu "Radio Adapters"

  config RADIO_CADET
  	tristate "ADS Cadet AM/FM Tuner"
-	depends on ISA && VIDEO_V4L1
+	depends on ISA && (VIDEO_V4L1 || VIDEO_V4L1_COMPAT)
 	---help---
 	  Choose Y here if you have one of these AM/FM radio cards, and then
 	  fill in the port address below.
@@ -25,7 +25,7 @@ config RADIO_CADET

  config RADIO_RTRACK
  	tristate "AIMSlab RadioTrack (aka RadioReveal) support"
-	depends on ISA && VIDEO_V4L1
+	depends on ISA && (VIDEO_V4L1 || VIDEO_V4L1_COMPAT)
 	---help---
 	  Choose Y here if you have one of these FM radio cards, and then fill
 	  in the port address below.
@@ -59,7 +59,7 @@ config RADIO_RTRACK_PORT

  config RADIO_RTRACK2
  	tristate "AIMSlab RadioTrack II support"
-	depends on ISA && VIDEO_V4L1
+	depends on ISA && (VIDEO_V4L1 || VIDEO_V4L1_COMPAT)
 	---help---
 	  Choose Y here if you have this FM radio card, and then fill in the
 	  port address below.
@@ -82,7 +82,7 @@ config RADIO_RTRACK2_PORT

  config RADIO_AZTECH
  	tristate "Aztech/Packard Bell Radio"
-	depends on ISA && VIDEO_V4L1
+	depends on ISA && (VIDEO_V4L1 || VIDEO_V4L1_COMPAT)
 	---help---
 	  Choose Y here if you have one of these FM radio cards, and then fill
 	  in the port address below.
@@ -106,7 +106,7 @@ config RADIO_AZTECH_PORT

  config RADIO_GEMTEK
  	tristate "GemTek Radio Card support"
-	depends on ISA && VIDEO_V4L1
+	depends on ISA && (VIDEO_V4L1 || VIDEO_V4L1_COMPAT)
 	---help---
 	  Choose Y here if you have this FM radio card, and then fill in the
 	  port address below.
@@ -131,7 +131,7 @@ config RADIO_GEMTEK_PORT

  config RADIO_GEMTEK_PCI
  	tristate "GemTek PCI Radio Card support"
-	depends on VIDEO_V4L1 && PCI
+	depends on (VIDEO_V4L1 || VIDEO_V4L1_COMPAT) && PCI
 	---help---
  	  Choose Y here if you have this PCI FM radio card.

@@ -145,7 +145,7 @@ config RADIO_GEMTEK_PCI

  config RADIO_MAXIRADIO
  	tristate "Guillemot MAXI Radio FM 2000 radio"
-	depends on VIDEO_V4L1 && PCI
+	depends on (VIDEO_V4L1 || VIDEO_V4L1_COMPAT) && PCI
 	---help---
 	  Choose Y here if you have this radio card.  This card may also be
  	  found as Gemtek PCI FM.
@@ -160,7 +160,7 @@ config RADIO_MAXIRADIO

  config RADIO_MAESTRO
  	tristate "Maestro on board radio"
-	depends on VIDEO_V4L1
+	depends on (VIDEO_V4L1 || VIDEO_V4L1_COMPAT)
 	---help---
 	  Say Y here to directly support the on-board radio tuner on the
 	  Maestro 2 or 2E sound card.
@@ -175,7 +175,7 @@ config RADIO_MAESTRO

  config RADIO_MIROPCM20
  	tristate "miroSOUND PCM20 radio"
-	depends on ISA && VIDEO_V4L1 && SOUND_ACI_MIXER
+	depends on ISA && (VIDEO_V4L1 || VIDEO_V4L1_COMPAT) && SOUND_ACI_MIXER
 	---help---
 	  Choose Y here if you have this FM radio card. You also need to say Y
  	  to "ACI mixer (miroSOUND PCM1-pro/PCM12/PCM20 radio)" (in "Sound")
@@ -208,7 +208,7 @@ config RADIO_MIROPCM20_RDS

  config RADIO_SF16FMI
  	tristate "SF16FMI Radio"
-	depends on ISA && VIDEO_V4L1
+	depends on ISA && (VIDEO_V4L1 || VIDEO_V4L1_COMPAT)
 	---help---
 	  Choose Y here if you have one of these FM radio cards.  If you
  	  compile the driver into the kernel and your card is not PnP one, you
@@ -225,7 +225,7 @@ config RADIO_SF16FMI

  config RADIO_SF16FMR2
  	tristate "SF16FMR2 Radio"
-	depends on ISA && VIDEO_V4L1
+	depends on ISA && (VIDEO_V4L1 || VIDEO_V4L1_COMPAT)
 	---help---
 	  Choose Y here if you have one of these FM radio cards.

@@ -239,7 +239,7 @@ config RADIO_SF16FMR2

  config RADIO_TERRATEC
  	tristate "TerraTec ActiveRadio ISA Standalone"
-	depends on ISA && VIDEO_V4L1
+	depends on ISA && (VIDEO_V4L1 || VIDEO_V4L1_COMPAT)
 	---help---
 	  Choose Y here if you have this FM radio card, and then fill in the
  	  port address below. (TODO)
@@ -268,7 +268,7 @@ config RADIO_TERRATEC_PORT

  config RADIO_TRUST
  	tristate "Trust FM radio card"
-	depends on ISA && VIDEO_V4L1
+	depends on ISA && (VIDEO_V4L1 || VIDEO_V4L1_COMPAT)
 	help
 	  This is a driver for the Trust FM radio cards. Say Y if you have
 	  such a card and want to use it under Linux.
@@ -286,7 +286,7 @@ config RADIO_TRUST_PORT

  config RADIO_TYPHOON
  	tristate "Typhoon Radio (a.k.a. EcoRadio)"
-	depends on ISA && VIDEO_V4L1
+	depends on ISA && (VIDEO_V4L1 || VIDEO_V4L1_COMPAT)
 	---help---
 	  Choose Y here if you have one of these FM radio cards, and then fill
 	  in the port address and the frequency used for muting below.
@@ -330,7 +330,7 @@ config RADIO_TYPHOON_MUTEFREQ

  config RADIO_ZOLTRIX
  	tristate "Zoltrix Radio"
-	depends on ISA && VIDEO_V4L1
+	depends on ISA && (VIDEO_V4L1 || VIDEO_V4L1_COMPAT)
 	---help---
 	  Choose Y here if you have one of these FM radio cards, and then fill
 	  in the port address below.

^ permalink raw reply related	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2006-08-01 15:27 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-06-25 17:40 [PATCH] Kconfig for radio cards to allow VIDEO_V4L1_COMPAT Jon Smirl
2006-06-25 18:21 ` Sam Ravnborg
2006-06-25 19:48   ` Jon Smirl
2006-06-26 13:06 ` Mauro Carvalho Chehab
2006-06-26 15:55   ` Jon Smirl
2006-06-26 16:58     ` Mauro Carvalho Chehab
2006-06-26 17:15       ` Jon Smirl
2006-06-26 19:00         ` Mauro Carvalho Chehab
2006-07-30 23:40       ` Alan Cox
2006-07-31 21:28         ` Mauro Carvalho Chehab
2006-07-31 23:36           ` Alan Cox
2006-08-01 15:46           ` PATCH: Convert usb fm radio to V4L2 and move to the right directory Alan Cox

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.