Home
last modified time | relevance | path

Searched hist:"039 d40019f3c5e26ea50ec5af4270189f63365e1" (Results 1 – 2 of 2) sorted by relevance

/openbmc/linux/drivers/media/
H A DMakefilediff 45033bcf172d9965210b644f3769c9de94c33333 Mon May 26 12:23:49 CDT 2008 Adrian Bunk <bunk@kernel.org> V4L/DVB (7908): always enter drivers/media/video/

After commit 039d40019f3c5e26ea50ec5af4270189f63365e1
(V4L/DVB (7898): Fix VIDEO_MEDIA Kconfig logic)
VIDEO_MEDIA is no longer usable in Makefile's for deciding
which directories we enter, resulting in compile errors like the
following with CONFIG_VIDEO_DEV=y, CONFIG_DVB_CORE=m:

<-- snip -->

...
MODPOST 187 modules
...
make[2]: *** [__modpost] Error 1

<-- snip -->

The easiest solution is to always enter video/

Signed-off-by: Adrian Bunk <bunk@kernel.org>
Acked-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
H A DKconfigdiff 039d40019f3c5e26ea50ec5af4270189f63365e1 Wed May 14 02:36:22 CDT 2008 Mauro Carvalho Chehab <mchehab@infradead.org> V4L/DVB (7898): Fix VIDEO_MEDIA Kconfig logic

If one of DVB_CORE or VIDEO_DEV is a module, the modules that can be used by
both DVB and V4L cores should also be a module, otherwise, it will break its
dependencies. This Kconfig logic implements the following:

CONFIG_VIDEO_DEV CONFIG_DVB_CORE CONFIG_VIDEO_MEDIA
N N N
N M M
N Y Y
M N M
M M M
M Y M
Y N Y
Y M M
Y Y Y

Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>