Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[media] omap3isp: Kconfig and Makefile

Add the OMAP3 ISP driver to the kernel build system.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>

authored by

Laurent Pinchart and committed by
Mauro Carvalho Chehab
7e8970e1 68e342b3

+35
+6
MAINTAINERS
··· 4556 4556 S: Maintained 4557 4557 F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c 4558 4558 4559 + OMAP IMAGE SIGNAL PROCESSOR (ISP) 4560 + M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> 4561 + L: linux-media@vger.kernel.org 4562 + S: Maintained 4563 + F: drivers/media/video/omap3isp/* 4564 + 4559 4565 OMAP USB SUPPORT 4560 4566 M: Felipe Balbi <balbi@ti.com> 4561 4567 M: David Brownell <dbrownell@users.sourceforge.net>
+13
drivers/media/video/Kconfig
··· 746 746 ---help--- 747 747 This driver supports NOON010PC30 CIF camera from Siliconfile 748 748 749 + config VIDEO_OMAP3 750 + tristate "OMAP 3 Camera support (EXPERIMENTAL)" 751 + select OMAP_IOMMU 752 + depends on VIDEO_V4L2 && I2C && VIDEO_V4L2_SUBDEV_API && ARCH_OMAP3 && EXPERIMENTAL 753 + ---help--- 754 + Driver for an OMAP 3 camera controller. 755 + 756 + config VIDEO_OMAP3_DEBUG 757 + bool "OMAP 3 Camera debug messages" 758 + depends on VIDEO_OMAP3 759 + ---help--- 760 + Enable debug messages on OMAP 3 camera controller driver. 761 + 749 762 config SOC_CAMERA 750 763 tristate "SoC camera support" 751 764 depends on VIDEO_V4L2 && HAS_DMA && I2C
+2
drivers/media/video/Makefile
··· 129 129 130 130 obj-$(CONFIG_VIDEO_VIA_CAMERA) += via-camera.o 131 131 132 + obj-$(CONFIG_VIDEO_OMAP3) += omap3isp/ 133 + 132 134 obj-$(CONFIG_USB_ZR364XX) += zr364xx.o 133 135 obj-$(CONFIG_USB_STKWEBCAM) += stkwebcam.o 134 136
+13
drivers/media/video/omap3isp/Makefile
··· 1 + # Makefile for OMAP3 ISP driver 2 + 3 + ifdef CONFIG_VIDEO_OMAP3_DEBUG 4 + EXTRA_CFLAGS += -DDEBUG 5 + endif 6 + 7 + omap3-isp-objs += \ 8 + isp.o ispqueue.o ispvideo.o \ 9 + ispcsiphy.o ispccp2.o ispcsi2.o \ 10 + ispccdc.o isppreview.o ispresizer.o \ 11 + ispstat.o isph3a_aewb.o isph3a_af.o isphist.o 12 + 13 + obj-$(CONFIG_VIDEO_OMAP3) += omap3-isp.o
+1
include/linux/Kbuild
··· 277 277 header-y += nl80211.h 278 278 header-y += nubus.h 279 279 header-y += nvram.h 280 + header-y += omap3isp.h 280 281 header-y += omapfb.h 281 282 header-y += oom.h 282 283 header-y += param.h