Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 781aa1d1 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

V4L/DVB (4922): Add usbvision driver



This patch adds usbvision into V4L/DVB HG tree.
Usbvision driver is a GPL driver, made by:
	Joerg Heckenbach <joerg@heckenbach-aw.de>
		and
	Dwaine Garden <DwaineGarden@rogers.com>
V4L2 migration made by:
	Thierry Merle <thierry.merle@free.fr>
Kconfig/Makefile scripts by:
	Mauro Carvalho Chehab <mchehab@infradead.org>

Signed-off-by: default avatarJoerg Heckenbach <joerg@heckenbach-aw.de>
Signed-off-by: default avatarDwaine Garden <dwainegarden@rogers.com>
Signed-off-by: default avatarThierry Merle <thierry.merle@free.fr>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent 2a893dea
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -686,6 +686,18 @@ source "drivers/media/video/pvrusb2/Kconfig"

source "drivers/media/video/em28xx/Kconfig"

config VIDEO_USBVISION
	tristate "USB video devices based on NT1003/1005/1005"
	depends on I2C && VIDEO_V4L2
	select VIDEO_SAA711X if VIDEO_HELPER_CHIPS_AUTO
	---help---
	  There are more than 50 different USB video devices based on
	  NT1003/1004/1005 USB Bridges. This driver enables using those
	  devices.

	  To compile this driver as a module, choose M here: the
	  module will be called ovcamchip.

source "drivers/media/video/usbvideo/Kconfig"

source "drivers/media/video/et61x251/Kconfig"
+1 −0
Original line number Diff line number Diff line
@@ -62,6 +62,7 @@ obj-$(CONFIG_VIDEO_MEYE) += meye.o
obj-$(CONFIG_VIDEO_SAA7134) += ir-kbd-i2c.o saa7134/
obj-$(CONFIG_VIDEO_CX88) += cx88/
obj-$(CONFIG_VIDEO_EM28XX) += em28xx/
obj-$(CONFIG_VIDEO_USBVISION) += usbvision/
obj-$(CONFIG_VIDEO_TVP5150) += tvp5150.o
obj-$(CONFIG_VIDEO_PVRUSB2) += pvrusb2/
obj-$(CONFIG_VIDEO_MSP3400) += msp3400.o
+5 −0
Original line number Diff line number Diff line
usbvision-objs  := usbvision-core.o usbvision-i2c.o

obj-$(CONFIG_VIDEO_USBVISION) += usbvision.o

EXTRA_CFLAGS += -Idrivers/media/video
Loading