mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-26 13:21:12 +07:00
48a8bbc7ca
Compile-testing with FB_OMAP2=m results in a link error:
drivers/media/platform/omap/omap_vout.o: In function `vidioc_streamoff':
omap_vout.c:(.text+0x1028): undefined reference to `omap_dispc_unregister_isr'
drivers/media/platform/omap/omap_vout.o: In function `omap_vout_release':
omap_vout.c:(.text+0x1330): undefined reference to `omap_dispc_unregister_isr'
drivers/media/platform/omap/omap_vout.o: In function `vidioc_streamon':
omap_vout.c:(.text+0x2dd4): undefined reference to `omap_dispc_register_isr'
drivers/media/platform/omap/omap_vout.o: In function `omap_vout_remove':
In order to enable compile-testing but still keep the correct dependency,
this changes the Kconfig logic so we only allow CONFIG_COMPILE_TEST
building when FB_OMAP is completely disabled, or have use the old
dependency on FB_OMAP to ensure VIDEO_OMAP2_VOUT is also a loadable
module when FB_OMAP2 is.
Fixes: d8555fd2f4
("media: omap2: allow building it with COMPILE_TEST && DRM_OMAP")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
18 lines
495 B
Plaintext
18 lines
495 B
Plaintext
config VIDEO_OMAP2_VOUT_VRFB
|
|
bool
|
|
default y
|
|
depends on VIDEO_OMAP2_VOUT && (OMAP2_VRFB || COMPILE_TEST)
|
|
|
|
config VIDEO_OMAP2_VOUT
|
|
tristate "OMAP2/OMAP3 V4L2-Display driver"
|
|
depends on MMU
|
|
depends on FB_OMAP2 || (COMPILE_TEST && FB_OMAP2=n)
|
|
depends on ARCH_OMAP2 || ARCH_OMAP3 || COMPILE_TEST
|
|
select VIDEOBUF_GEN
|
|
select VIDEOBUF_DMA_CONTIG
|
|
select OMAP2_VRFB if ARCH_OMAP2 || ARCH_OMAP3
|
|
select FRAME_VECTOR
|
|
default n
|
|
---help---
|
|
V4L2 Display driver support for OMAP2/3 based boards.
|