diff options
author | Kuninori Morimoto <morimoto.kuninori@renesas.com> | 2008-10-24 20:43:07 +0200 |
---|---|---|
committer | Kuninori Morimoto <morimoto.kuninori@renesas.com> | 2008-10-24 20:43:07 +0200 |
commit | 38c41e5befb62d52342e5d837beb2f5ab2b8e21e (patch) | |
tree | d7dcd203688772941f31adb20f59fa80622dd5dd /linux/drivers/media/video/Kconfig | |
parent | 2919f67f6614355388ad72644b0a305ec1c86234 (diff) | |
download | mediapointer-dvb-s2-38c41e5befb62d52342e5d837beb2f5ab2b8e21e.tar.gz mediapointer-dvb-s2-38c41e5befb62d52342e5d837beb2f5ab2b8e21e.tar.bz2 |
Add ov772x driver
This patch adds ov772x driver that use soc_camera framework.
It was tested on SH Migo-r board.
Signed-off-by: Kuninori Morimoto <morimoto.kuninori@renesas.com>
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
---
Patch v7 -> v8
fix SWAP_MASK mistake
remove empty lines.
drivers/media/video/Kconfig | 6 +
drivers/media/video/Makefile | 1 +
drivers/media/video/ov772x.c | 966 +++++++++++++++++++++++++++++++++++++++
include/media/ov772x.h | 21 +
include/media/v4l2-chip-ident.h | 1 +
5 files changed, 995 insertions(+), 0 deletions(-)
create mode 100644 drivers/media/video/ov772x.c
create mode 100644 include/media/ov772x.h
Diffstat (limited to 'linux/drivers/media/video/Kconfig')
-rw-r--r-- | linux/drivers/media/video/Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/linux/drivers/media/video/Kconfig b/linux/drivers/media/video/Kconfig index 47102c2c8..7b363da33 100644 --- a/linux/drivers/media/video/Kconfig +++ b/linux/drivers/media/video/Kconfig @@ -750,6 +750,12 @@ config SOC_CAMERA_PLATFORM help This is a generic SoC camera platform driver, useful for testing +config SOC_CAMERA_OV772X + tristate "ov772x camera support" + depends on SOC_CAMERA && I2C + help + This is a ov772x camera driver + config VIDEO_PXA27x tristate "PXA27x Quick Capture Interface driver" depends on VIDEO_DEV && PXA27x && SOC_CAMERA |