mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-07 21:24:00 +08:00
8a677b6edd
Convert omap_vout_uservirt_to_phys() to use get_vaddr_pfns() instead of hand made mapping of virtual address to physical address. Also the function leaked page reference from get_user_pages() so fix that by properly release the reference when omap_vout_buffer_release() is called. Signed-off-by: Jan Kara <jack@suse.cz> [hans.verkuil@cisco.com: remove unused variable] Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
17 lines
467 B
Plaintext
17 lines
467 B
Plaintext
config VIDEO_OMAP2_VOUT_VRFB
|
|
bool
|
|
|
|
config VIDEO_OMAP2_VOUT
|
|
tristate "OMAP2/OMAP3 V4L2-Display driver"
|
|
depends on MMU
|
|
depends on ARCH_OMAP2 || ARCH_OMAP3
|
|
select VIDEOBUF_GEN
|
|
select VIDEOBUF_DMA_CONTIG
|
|
select OMAP2_DSS if HAS_IOMEM && ARCH_OMAP2PLUS
|
|
select OMAP2_VRFB if ARCH_OMAP2 || ARCH_OMAP3
|
|
select VIDEO_OMAP2_VOUT_VRFB if VIDEO_OMAP2_VOUT && OMAP2_VRFB
|
|
select FRAME_VECTOR
|
|
default n
|
|
---help---
|
|
V4L2 Display driver support for OMAP2/3 based boards.
|