mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-16 01:36:42 +07:00
256acbebdc
Convert omap_vout to the vb2 framework. After this change 'v4l2-compliance -s' passes all tests. As usual, this vb2 conversion is a 'big bang' patch and hard to read. Tested on a Pandaboard and a Beagle XM board. Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
18 lines
521 B
Plaintext
18 lines
521 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
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
|
|
depends on VIDEO_V4L2
|
|
select VIDEOBUF2_DMA_CONTIG
|
|
select OMAP2_VRFB if ARCH_OMAP2 || ARCH_OMAP3
|
|
select FRAME_VECTOR
|
|
help
|
|
V4L2 Display driver support for OMAP2/3 based boards.
|