diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2018-01-08 21:20:01 +0100 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2018-01-23 14:05:02 +0100 |
commit | 7952be9b6ece3d3c4d61f9811d7e5a984580064a (patch) | |
tree | c4ff80f1260e865bada91ddd2a0e5e777514dff8 /drivers/media/common/videobuf2/Kconfig | |
parent | media: cobalt: select CONFIG_SND_PCM (diff) | |
download | linux-7952be9b6ece3d3c4d61f9811d7e5a984580064a.tar.xz linux-7952be9b6ece3d3c4d61f9811d7e5a984580064a.zip |
media: drivers/media/common/videobuf2: rename from videobuf
This directory contains the videobuf2 framework, so name the
directory accordingly.
The name 'videobuf' typically refers to the old and deprecated
videobuf version 1 framework so that was confusing.
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Acked-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media/common/videobuf2/Kconfig')
-rw-r--r-- | drivers/media/common/videobuf2/Kconfig | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/drivers/media/common/videobuf2/Kconfig b/drivers/media/common/videobuf2/Kconfig new file mode 100644 index 000000000000..5df05250de94 --- /dev/null +++ b/drivers/media/common/videobuf2/Kconfig @@ -0,0 +1,31 @@ +# Used by drivers that need Videobuf2 modules +config VIDEOBUF2_CORE + select DMA_SHARED_BUFFER + tristate + +config VIDEOBUF2_MEMOPS + tristate + select FRAME_VECTOR + +config VIDEOBUF2_DMA_CONTIG + tristate + depends on HAS_DMA + select VIDEOBUF2_CORE + select VIDEOBUF2_MEMOPS + select DMA_SHARED_BUFFER + +config VIDEOBUF2_VMALLOC + tristate + select VIDEOBUF2_CORE + select VIDEOBUF2_MEMOPS + select DMA_SHARED_BUFFER + +config VIDEOBUF2_DMA_SG + tristate + depends on HAS_DMA + select VIDEOBUF2_CORE + select VIDEOBUF2_MEMOPS + +config VIDEOBUF2_DVB + tristate + select VIDEOBUF2_CORE |