mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-28 23:24:50 +00:00
9322fe0f92
The Timberdale FPGA video driver has not seen any real development since 2011 (and very little before that). One of the problems with the timblogiw driver is that it uses videobuf instead of the newer vb2 framework. The long term goal is to either convert or remove any driver still using videobuf. Since none of the core v4l developers has the hardware, we cannot convert it ourselves. As far as I can tell it was only used in an Intel demo board in 2009 using Meego: http://www.chinait.com/intelcontent/intelprc/admin/PDFFile/20106411545.pdf which has since been superseded. Moving this driver to staging is the first step towards removal. After 2 or 3 kernel cycles it will be removed altogether unless someone steps up to clean up this driver. Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Acked-by: Richard Röjfors <richard@puffinpack.se> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
58 lines
1.5 KiB
Makefile
58 lines
1.5 KiB
Makefile
#
|
|
# Makefile for the video capture/playback device drivers.
|
|
#
|
|
|
|
obj-$(CONFIG_VIDEO_M32R_AR_M64278) += arv.o
|
|
|
|
obj-$(CONFIG_VIDEO_VIA_CAMERA) += via-camera.o
|
|
obj-$(CONFIG_VIDEO_CAFE_CCIC) += marvell-ccic/
|
|
obj-$(CONFIG_VIDEO_MMP_CAMERA) += marvell-ccic/
|
|
|
|
obj-$(CONFIG_VIDEO_OMAP3) += omap3isp/
|
|
|
|
obj-$(CONFIG_VIDEO_VIU) += fsl-viu.o
|
|
|
|
obj-$(CONFIG_VIDEO_VIVID) += vivid/
|
|
obj-$(CONFIG_VIDEO_VIM2M) += vim2m.o
|
|
|
|
obj-$(CONFIG_VIDEO_TI_VPE) += ti-vpe/
|
|
|
|
obj-$(CONFIG_VIDEO_TI_CAL) += ti-vpe/
|
|
|
|
obj-$(CONFIG_VIDEO_MX2_EMMAPRP) += mx2_emmaprp.o
|
|
obj-$(CONFIG_VIDEO_CODA) += coda/
|
|
|
|
obj-$(CONFIG_VIDEO_SH_VEU) += sh_veu.o
|
|
|
|
obj-$(CONFIG_VIDEO_MEM2MEM_DEINTERLACE) += m2m-deinterlace.o
|
|
|
|
obj-$(CONFIG_VIDEO_S3C_CAMIF) += s3c-camif/
|
|
obj-$(CONFIG_VIDEO_SAMSUNG_EXYNOS4_IS) += exynos4-is/
|
|
obj-$(CONFIG_VIDEO_SAMSUNG_S5P_JPEG) += s5p-jpeg/
|
|
obj-$(CONFIG_VIDEO_SAMSUNG_S5P_MFC) += s5p-mfc/
|
|
obj-$(CONFIG_VIDEO_SAMSUNG_S5P_TV) += s5p-tv/
|
|
|
|
obj-$(CONFIG_VIDEO_SAMSUNG_S5P_G2D) += s5p-g2d/
|
|
obj-$(CONFIG_VIDEO_SAMSUNG_EXYNOS_GSC) += exynos-gsc/
|
|
|
|
obj-$(CONFIG_VIDEO_STI_BDISP) += sti/bdisp/
|
|
obj-$(CONFIG_DVB_C8SECTPFE) += sti/c8sectpfe/
|
|
|
|
obj-$(CONFIG_BLACKFIN) += blackfin/
|
|
|
|
obj-$(CONFIG_ARCH_DAVINCI) += davinci/
|
|
|
|
obj-$(CONFIG_VIDEO_SH_VOU) += sh_vou.o
|
|
|
|
obj-$(CONFIG_SOC_CAMERA) += soc_camera/
|
|
|
|
obj-$(CONFIG_VIDEO_RENESAS_JPU) += rcar_jpu.o
|
|
obj-$(CONFIG_VIDEO_RENESAS_VSP1) += vsp1/
|
|
|
|
obj-y += omap/
|
|
|
|
obj-$(CONFIG_VIDEO_AM437X_VPFE) += am437x/
|
|
|
|
obj-$(CONFIG_VIDEO_XILINX) += xilinx/
|
|
|
|
ccflags-y += -I$(srctree)/drivers/media/i2c
|