* [PATCH] [media] v4l2-pci-skeleton: Only build if PCI is available
@ 2014-08-26 17:25 Mark Brown
2014-08-26 18:58 ` Randy Dunlap
2014-08-26 19:20 ` Randy Dunlap
0 siblings, 2 replies; 11+ messages in thread
From: Mark Brown @ 2014-08-26 17:25 UTC (permalink / raw)
To: Peter Foley, Randy Dunlap, Mauro Carvalho Chehab, Hans Verkuil
Cc: linux-media, linux-doc, linaro-kernel, Mark Brown
From: Mark Brown <broonie@linaro.org>
Currently arm64 does not support PCI but it does support v4l2. Since the
PCI skeleton driver is built unconditionally as a module with no dependency
on PCI this causes build failures for arm64 allmodconfig. Fix this by
defining a symbol VIDEO_PCI_SKELETON for the skeleton and conditionalising
the build on that.
Signed-off-by: Mark Brown <broonie@linaro.org>
---
The patch adding the Makefile was added to the Documentation tree,
either it should be reverted or something like this added on top.
Documentation/video4linux/Makefile | 2 +-
drivers/media/v4l2-core/Kconfig | 7 +++++++
2 files changed, 8 insertions(+), 1 deletion(-)
diff --git a/Documentation/video4linux/Makefile b/Documentation/video4linux/Makefile
index d58101e788fc..65a351d75c95 100644
--- a/Documentation/video4linux/Makefile
+++ b/Documentation/video4linux/Makefile
@@ -1 +1 @@
-obj-m := v4l2-pci-skeleton.o
+obj-$(CONFIG_VIDEO_PCI_SKELETON) := v4l2-pci-skeleton.o
diff --git a/drivers/media/v4l2-core/Kconfig b/drivers/media/v4l2-core/Kconfig
index 9ca0f8d59a14..2b368f711c9e 100644
--- a/drivers/media/v4l2-core/Kconfig
+++ b/drivers/media/v4l2-core/Kconfig
@@ -25,6 +25,13 @@ config VIDEO_FIXED_MINOR_RANGES
When in doubt, say N.
+config VIDEO_PCI_SKELETON
+ tristate "Skeleton PCI V4L2 driver"
+ depends on PCI && COMPILE_TEST
+ ---help---
+ Enable build of the skeleton PCI driver, used as a reference
+ when developign new drivers.
+
# Used by drivers that need tuner.ko
config VIDEO_TUNER
tristate
--
2.1.0.rc1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH] [media] v4l2-pci-skeleton: Only build if PCI is available
2014-08-26 17:25 [PATCH] [media] v4l2-pci-skeleton: Only build if PCI is available Mark Brown
@ 2014-08-26 18:58 ` Randy Dunlap
2014-08-26 19:20 ` Randy Dunlap
1 sibling, 0 replies; 11+ messages in thread
From: Randy Dunlap @ 2014-08-26 18:58 UTC (permalink / raw)
To: Mark Brown, Peter Foley, Mauro Carvalho Chehab, Hans Verkuil
Cc: linux-media, linux-doc, linaro-kernel, Mark Brown
On 08/26/14 10:25, Mark Brown wrote:
> From: Mark Brown <broonie@linaro.org>
>
> Currently arm64 does not support PCI but it does support v4l2. Since the
> PCI skeleton driver is built unconditionally as a module with no dependency
> on PCI this causes build failures for arm64 allmodconfig. Fix this by
> defining a symbol VIDEO_PCI_SKELETON for the skeleton and conditionalising
> the build on that.
Looks good. Applied. Thanks.
I'm pretty sure that it also needs "depends on VIDEOBUF2_CORE" or
something in that family. I'll check that and add it.
> Signed-off-by: Mark Brown <broonie@linaro.org>
> ---
>
> The patch adding the Makefile was added to the Documentation tree,
> either it should be reverted or something like this added on top.
>
> Documentation/video4linux/Makefile | 2 +-
> drivers/media/v4l2-core/Kconfig | 7 +++++++
> 2 files changed, 8 insertions(+), 1 deletion(-)
>
> diff --git a/Documentation/video4linux/Makefile b/Documentation/video4linux/Makefile
> index d58101e788fc..65a351d75c95 100644
> --- a/Documentation/video4linux/Makefile
> +++ b/Documentation/video4linux/Makefile
> @@ -1 +1 @@
> -obj-m := v4l2-pci-skeleton.o
> +obj-$(CONFIG_VIDEO_PCI_SKELETON) := v4l2-pci-skeleton.o
> diff --git a/drivers/media/v4l2-core/Kconfig b/drivers/media/v4l2-core/Kconfig
> index 9ca0f8d59a14..2b368f711c9e 100644
> --- a/drivers/media/v4l2-core/Kconfig
> +++ b/drivers/media/v4l2-core/Kconfig
> @@ -25,6 +25,13 @@ config VIDEO_FIXED_MINOR_RANGES
>
> When in doubt, say N.
>
> +config VIDEO_PCI_SKELETON
> + tristate "Skeleton PCI V4L2 driver"
> + depends on PCI && COMPILE_TEST
> + ---help---
> + Enable build of the skeleton PCI driver, used as a reference
> + when developign new drivers.
> +
> # Used by drivers that need tuner.ko
> config VIDEO_TUNER
> tristate
>
--
~Randy
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] [media] v4l2-pci-skeleton: Only build if PCI is available
2014-08-26 17:25 [PATCH] [media] v4l2-pci-skeleton: Only build if PCI is available Mark Brown
2014-08-26 18:58 ` Randy Dunlap
@ 2014-08-26 19:20 ` Randy Dunlap
2014-08-26 19:26 ` Mark Brown
1 sibling, 1 reply; 11+ messages in thread
From: Randy Dunlap @ 2014-08-26 19:20 UTC (permalink / raw)
To: Mark Brown, Peter Foley, Mauro Carvalho Chehab, Hans Verkuil
Cc: linux-media, linux-doc, linaro-kernel, Mark Brown
On 08/26/14 10:25, Mark Brown wrote:
> From: Mark Brown <broonie@linaro.org>
>
> Currently arm64 does not support PCI but it does support v4l2. Since the
> PCI skeleton driver is built unconditionally as a module with no dependency
> on PCI this causes build failures for arm64 allmodconfig. Fix this by
> defining a symbol VIDEO_PCI_SKELETON for the skeleton and conditionalising
> the build on that.
>
> Signed-off-by: Mark Brown <broonie@linaro.org>
> ---
>
> The patch adding the Makefile was added to the Documentation tree,
> either it should be reverted or something like this added on top.
>
> Documentation/video4linux/Makefile | 2 +-
> drivers/media/v4l2-core/Kconfig | 7 +++++++
> 2 files changed, 8 insertions(+), 1 deletion(-)
>
> diff --git a/Documentation/video4linux/Makefile b/Documentation/video4linux/Makefile
> index d58101e788fc..65a351d75c95 100644
> --- a/Documentation/video4linux/Makefile
> +++ b/Documentation/video4linux/Makefile
> @@ -1 +1 @@
> -obj-m := v4l2-pci-skeleton.o
> +obj-$(CONFIG_VIDEO_PCI_SKELETON) := v4l2-pci-skeleton.o
> diff --git a/drivers/media/v4l2-core/Kconfig b/drivers/media/v4l2-core/Kconfig
> index 9ca0f8d59a14..2b368f711c9e 100644
> --- a/drivers/media/v4l2-core/Kconfig
> +++ b/drivers/media/v4l2-core/Kconfig
> @@ -25,6 +25,13 @@ config VIDEO_FIXED_MINOR_RANGES
>
> When in doubt, say N.
>
> +config VIDEO_PCI_SKELETON
> + tristate "Skeleton PCI V4L2 driver"
> + depends on PCI && COMPILE_TEST
&& ?? No, don't require COMPILE_TEST.
However, PCI || COMPILE_TEST would allow it to build on arm64
if COMPILE_TEST is enabled, guaranteeing build errors.
Is that what should happen? I suppose so...
> + ---help---
> + Enable build of the skeleton PCI driver, used as a reference
> + when developign new drivers.
> +
> # Used by drivers that need tuner.ko
> config VIDEO_TUNER
> tristate
>
--
~Randy
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] [media] v4l2-pci-skeleton: Only build if PCI is available
2014-08-26 19:20 ` Randy Dunlap
@ 2014-08-26 19:26 ` Mark Brown
2014-08-26 19:59 ` Randy Dunlap
0 siblings, 1 reply; 11+ messages in thread
From: Mark Brown @ 2014-08-26 19:26 UTC (permalink / raw)
To: Randy Dunlap
Cc: Peter Foley, Mauro Carvalho Chehab, Hans Verkuil, linux-media,
linux-doc, linaro-kernel
[-- Attachment #1: Type: text/plain, Size: 1172 bytes --]
On Tue, Aug 26, 2014 at 12:20:54PM -0700, Randy Dunlap wrote:
> On 08/26/14 10:25, Mark Brown wrote:
> > index d58101e788fc..65a351d75c95 100644
> > --- a/Documentation/video4linux/Makefile
> > +++ b/Documentation/video4linux/Makefile
> > @@ -1 +1 @@
> > -obj-m := v4l2-pci-skeleton.o
> > +obj-$(CONFIG_VIDEO_PCI_SKELETON) := v4l2-pci-skeleton.o
> > diff --git a/drivers/media/v4l2-core/Kconfig b/drivers/media/v4l2-core/Kconfig
> > +config VIDEO_PCI_SKELETON
> > + tristate "Skeleton PCI V4L2 driver"
> > + depends on PCI && COMPILE_TEST
> && ?? No, don't require COMPILE_TEST.
That's a very deliberate choice. There's no reason I can see to build
this code other than to check that it builds, it's reference code rather
than something that someone is expected to actually use in their system.
This seems like a perfect candidate for COMPILE_TEST.
> However, PCI || COMPILE_TEST would allow it to build on arm64
> if COMPILE_TEST is enabled, guaranteeing build errors.
> Is that what should happen? I suppose so...
No, it's not - if it's going to depend on COMPILE_TEST at all it need to
be a hard dependency.
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] [media] v4l2-pci-skeleton: Only build if PCI is available
2014-08-26 19:26 ` Mark Brown
@ 2014-08-26 19:59 ` Randy Dunlap
2014-08-26 20:08 ` Randy Dunlap
0 siblings, 1 reply; 11+ messages in thread
From: Randy Dunlap @ 2014-08-26 19:59 UTC (permalink / raw)
To: Mark Brown
Cc: Peter Foley, Mauro Carvalho Chehab, Hans Verkuil, linux-media,
linux-doc, linaro-kernel
On 08/26/14 12:26, Mark Brown wrote:
> On Tue, Aug 26, 2014 at 12:20:54PM -0700, Randy Dunlap wrote:
>> On 08/26/14 10:25, Mark Brown wrote:
>
>>> index d58101e788fc..65a351d75c95 100644
>>> --- a/Documentation/video4linux/Makefile
>>> +++ b/Documentation/video4linux/Makefile
>>> @@ -1 +1 @@
>>> -obj-m := v4l2-pci-skeleton.o
>>> +obj-$(CONFIG_VIDEO_PCI_SKELETON) := v4l2-pci-skeleton.o
>>> diff --git a/drivers/media/v4l2-core/Kconfig b/drivers/media/v4l2-core/Kconfig
>
>>> +config VIDEO_PCI_SKELETON
>>> + tristate "Skeleton PCI V4L2 driver"
>>> + depends on PCI && COMPILE_TEST
>
>> && ?? No, don't require COMPILE_TEST.
>
> That's a very deliberate choice. There's no reason I can see to build
> this code other than to check that it builds, it's reference code rather
> than something that someone is expected to actually use in their system.
> This seems like a perfect candidate for COMPILE_TEST.
>
>> However, PCI || COMPILE_TEST would allow it to build on arm64
>> if COMPILE_TEST is enabled, guaranteeing build errors.
>> Is that what should happen? I suppose so...
>
> No, it's not - if it's going to depend on COMPILE_TEST at all it need to
> be a hard dependency.
How about just drop COMPILE_TEST? This code only builds if someone enabled
BUILD_DOCSRC. That should be enough (along with PCI and some VIDEO kconfig
symbols) to qualify it.
--
~Randy
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] [media] v4l2-pci-skeleton: Only build if PCI is available
2014-08-26 19:59 ` Randy Dunlap
@ 2014-08-26 20:08 ` Randy Dunlap
2014-08-27 7:09 ` Mark Brown
0 siblings, 1 reply; 11+ messages in thread
From: Randy Dunlap @ 2014-08-26 20:08 UTC (permalink / raw)
To: Mark Brown
Cc: Peter Foley, Mauro Carvalho Chehab, Hans Verkuil, linux-media,
linux-doc, linaro-kernel
On 08/26/14 12:59, Randy Dunlap wrote:
> On 08/26/14 12:26, Mark Brown wrote:
>> On Tue, Aug 26, 2014 at 12:20:54PM -0700, Randy Dunlap wrote:
>>> On 08/26/14 10:25, Mark Brown wrote:
>>
>>>> index d58101e788fc..65a351d75c95 100644
>>>> --- a/Documentation/video4linux/Makefile
>>>> +++ b/Documentation/video4linux/Makefile
>>>> @@ -1 +1 @@
>>>> -obj-m := v4l2-pci-skeleton.o
>>>> +obj-$(CONFIG_VIDEO_PCI_SKELETON) := v4l2-pci-skeleton.o
>>>> diff --git a/drivers/media/v4l2-core/Kconfig b/drivers/media/v4l2-core/Kconfig
>>
>>>> +config VIDEO_PCI_SKELETON
>>>> + tristate "Skeleton PCI V4L2 driver"
>>>> + depends on PCI && COMPILE_TEST
>>
>>> && ?? No, don't require COMPILE_TEST.
>>
>> That's a very deliberate choice. There's no reason I can see to build
>> this code other than to check that it builds, it's reference code rather
>> than something that someone is expected to actually use in their system.
>> This seems like a perfect candidate for COMPILE_TEST.
>>
>>> However, PCI || COMPILE_TEST would allow it to build on arm64
>>> if COMPILE_TEST is enabled, guaranteeing build errors.
>>> Is that what should happen? I suppose so...
>>
>> No, it's not - if it's going to depend on COMPILE_TEST at all it need to
>> be a hard dependency.
>
> How about just drop COMPILE_TEST? This code only builds if someone enabled
> BUILD_DOCSRC. That should be enough (along with PCI and some VIDEO kconfig
> symbols) to qualify it.
I'll add BUILD_DOCSRC to the depends list in the Kconfig file...
--
~Randy
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] [media] v4l2-pci-skeleton: Only build if PCI is available
2014-08-26 20:08 ` Randy Dunlap
@ 2014-08-27 7:09 ` Mark Brown
0 siblings, 0 replies; 11+ messages in thread
From: Mark Brown @ 2014-08-27 7:09 UTC (permalink / raw)
To: Randy Dunlap
Cc: Peter Foley, Mauro Carvalho Chehab, Hans Verkuil, linux-media,
linux-doc, linaro-kernel
[-- Attachment #1: Type: text/plain, Size: 581 bytes --]
On Tue, Aug 26, 2014 at 01:08:39PM -0700, Randy Dunlap wrote:
> On 08/26/14 12:59, Randy Dunlap wrote:
> > On 08/26/14 12:26, Mark Brown wrote:
> >> No, it's not - if it's going to depend on COMPILE_TEST at all it need to
> >> be a hard dependency.
> > How about just drop COMPILE_TEST? This code only builds if someone enabled
> > BUILD_DOCSRC. That should be enough (along with PCI and some VIDEO kconfig
> > symbols) to qualify it.
> I'll add BUILD_DOCSRC to the depends list in the Kconfig file...
OK, that symbol probably does the job - I wasn't aware of it previously.
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH] [media] v4l2-pci-skeleton: Only build if PCI is available
@ 2014-08-26 16:38 Mark Brown
2014-08-26 16:56 ` Hans Verkuil
2014-08-26 21:01 ` Hans Verkuil
0 siblings, 2 replies; 11+ messages in thread
From: Mark Brown @ 2014-08-26 16:38 UTC (permalink / raw)
To: Mauro Carvalho Chehab, Hans Verkuil
Cc: linux-media, linaro-kernel, Mark Brown
From: Mark Brown <broonie@linaro.org>
Currently arm64 does not support PCI but it does support v4l2. Since the
PCI skeleton driver is built unconditionally as a module with no dependency
on PCI this causes build failures for arm64 allmodconfig. Fix this by
defining a symbol VIDEO_PCI_SKELETON for the skeleton and conditionalising
the build on that.
Signed-off-by: Mark Brown <broonie@linaro.org>
---
Documentation/video4linux/Makefile | 2 +-
drivers/media/v4l2-core/Kconfig | 7 +++++++
2 files changed, 8 insertions(+), 1 deletion(-)
diff --git a/Documentation/video4linux/Makefile b/Documentation/video4linux/Makefile
index d58101e788fc..65a351d75c95 100644
--- a/Documentation/video4linux/Makefile
+++ b/Documentation/video4linux/Makefile
@@ -1 +1 @@
-obj-m := v4l2-pci-skeleton.o
+obj-$(CONFIG_VIDEO_PCI_SKELETON) := v4l2-pci-skeleton.o
diff --git a/drivers/media/v4l2-core/Kconfig b/drivers/media/v4l2-core/Kconfig
index 9ca0f8d59a14..2b368f711c9e 100644
--- a/drivers/media/v4l2-core/Kconfig
+++ b/drivers/media/v4l2-core/Kconfig
@@ -25,6 +25,13 @@ config VIDEO_FIXED_MINOR_RANGES
When in doubt, say N.
+config VIDEO_PCI_SKELETON
+ tristate "Skeleton PCI V4L2 driver"
+ depends on PCI && COMPILE_TEST
+ ---help---
+ Enable build of the skeleton PCI driver, used as a reference
+ when developign new drivers.
+
# Used by drivers that need tuner.ko
config VIDEO_TUNER
tristate
--
2.1.0.rc1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH] [media] v4l2-pci-skeleton: Only build if PCI is available
2014-08-26 16:38 Mark Brown
@ 2014-08-26 16:56 ` Hans Verkuil
2014-08-26 17:22 ` Mark Brown
2014-08-26 21:01 ` Hans Verkuil
1 sibling, 1 reply; 11+ messages in thread
From: Hans Verkuil @ 2014-08-26 16:56 UTC (permalink / raw)
To: Mark Brown, Mauro Carvalho Chehab, Hans Verkuil
Cc: linux-media, linaro-kernel, Mark Brown
Against which kernel is this? Documentation/video4linux/Makefile doesn't exist
in either the mainline kernel or the media_tree git repo.
Regards,
Hans
On 08/26/2014 06:38 PM, Mark Brown wrote:
> From: Mark Brown <broonie@linaro.org>
>
> Currently arm64 does not support PCI but it does support v4l2. Since the
> PCI skeleton driver is built unconditionally as a module with no dependency
> on PCI this causes build failures for arm64 allmodconfig. Fix this by
> defining a symbol VIDEO_PCI_SKELETON for the skeleton and conditionalising
> the build on that.
>
> Signed-off-by: Mark Brown <broonie@linaro.org>
> ---
> Documentation/video4linux/Makefile | 2 +-
> drivers/media/v4l2-core/Kconfig | 7 +++++++
> 2 files changed, 8 insertions(+), 1 deletion(-)
>
> diff --git a/Documentation/video4linux/Makefile b/Documentation/video4linux/Makefile
> index d58101e788fc..65a351d75c95 100644
> --- a/Documentation/video4linux/Makefile
> +++ b/Documentation/video4linux/Makefile
> @@ -1 +1 @@
> -obj-m := v4l2-pci-skeleton.o
> +obj-$(CONFIG_VIDEO_PCI_SKELETON) := v4l2-pci-skeleton.o
> diff --git a/drivers/media/v4l2-core/Kconfig b/drivers/media/v4l2-core/Kconfig
> index 9ca0f8d59a14..2b368f711c9e 100644
> --- a/drivers/media/v4l2-core/Kconfig
> +++ b/drivers/media/v4l2-core/Kconfig
> @@ -25,6 +25,13 @@ config VIDEO_FIXED_MINOR_RANGES
>
> When in doubt, say N.
>
> +config VIDEO_PCI_SKELETON
> + tristate "Skeleton PCI V4L2 driver"
> + depends on PCI && COMPILE_TEST
> + ---help---
> + Enable build of the skeleton PCI driver, used as a reference
> + when developign new drivers.
> +
> # Used by drivers that need tuner.ko
> config VIDEO_TUNER
> tristate
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] [media] v4l2-pci-skeleton: Only build if PCI is available
2014-08-26 16:56 ` Hans Verkuil
@ 2014-08-26 17:22 ` Mark Brown
0 siblings, 0 replies; 11+ messages in thread
From: Mark Brown @ 2014-08-26 17:22 UTC (permalink / raw)
To: Hans Verkuil
Cc: Mauro Carvalho Chehab, Hans Verkuil, linux-media, linaro-kernel
[-- Attachment #1: Type: text/plain, Size: 278 bytes --]
On Tue, Aug 26, 2014 at 06:56:05PM +0200, Hans Verkuil wrote:
> Against which kernel is this? Documentation/video4linux/Makefile doesn't exist
> in either the mainline kernel or the media_tree git repo.
This is against -next, looks like the bug is in the Documentation
tree...
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] [media] v4l2-pci-skeleton: Only build if PCI is available
2014-08-26 16:38 Mark Brown
2014-08-26 16:56 ` Hans Verkuil
@ 2014-08-26 21:01 ` Hans Verkuil
1 sibling, 0 replies; 11+ messages in thread
From: Hans Verkuil @ 2014-08-26 21:01 UTC (permalink / raw)
To: Mark Brown, Mauro Carvalho Chehab, Hans Verkuil
Cc: linux-media, linaro-kernel, Mark Brown
On 08/26/2014 06:38 PM, Mark Brown wrote:
> From: Mark Brown <broonie@linaro.org>
>
> Currently arm64 does not support PCI but it does support v4l2. Since the
> PCI skeleton driver is built unconditionally as a module with no dependency
> on PCI this causes build failures for arm64 allmodconfig. Fix this by
> defining a symbol VIDEO_PCI_SKELETON for the skeleton and conditionalising
> the build on that.
>
> Signed-off-by: Mark Brown <broonie@linaro.org>
> ---
> Documentation/video4linux/Makefile | 2 +-
> drivers/media/v4l2-core/Kconfig | 7 +++++++
> 2 files changed, 8 insertions(+), 1 deletion(-)
>
> diff --git a/Documentation/video4linux/Makefile b/Documentation/video4linux/Makefile
> index d58101e788fc..65a351d75c95 100644
> --- a/Documentation/video4linux/Makefile
> +++ b/Documentation/video4linux/Makefile
> @@ -1 +1 @@
> -obj-m := v4l2-pci-skeleton.o
> +obj-$(CONFIG_VIDEO_PCI_SKELETON) := v4l2-pci-skeleton.o
> diff --git a/drivers/media/v4l2-core/Kconfig b/drivers/media/v4l2-core/Kconfig
> index 9ca0f8d59a14..2b368f711c9e 100644
> --- a/drivers/media/v4l2-core/Kconfig
> +++ b/drivers/media/v4l2-core/Kconfig
> @@ -25,6 +25,13 @@ config VIDEO_FIXED_MINOR_RANGES
>
> When in doubt, say N.
>
> +config VIDEO_PCI_SKELETON
> + tristate "Skeleton PCI V4L2 driver"
> + depends on PCI && COMPILE_TEST
> + ---help---
> + Enable build of the skeleton PCI driver, used as a reference
> + when developign new drivers.
Typo: developign -> developing
> +
> # Used by drivers that need tuner.ko
> config VIDEO_TUNER
> tristate
>
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2014-08-27 7:10 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-26 17:25 [PATCH] [media] v4l2-pci-skeleton: Only build if PCI is available Mark Brown
2014-08-26 18:58 ` Randy Dunlap
2014-08-26 19:20 ` Randy Dunlap
2014-08-26 19:26 ` Mark Brown
2014-08-26 19:59 ` Randy Dunlap
2014-08-26 20:08 ` Randy Dunlap
2014-08-27 7:09 ` Mark Brown
-- strict thread matches above, loose matches on Subject: below --
2014-08-26 16:38 Mark Brown
2014-08-26 16:56 ` Hans Verkuil
2014-08-26 17:22 ` Mark Brown
2014-08-26 21:01 ` Hans Verkuil
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).