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

Commit 483dfdb6 authored by Thierry MERLE's avatar Thierry MERLE Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (4937): Usbvision cleanup and code reorganization



- removal of overlay stuff
- reorganization of functions in 3 files:
    * usbvision-i2c for I2C-related stuff
    * usbvision-video for v4l2 entry points
    * usbvision-core for all peripheral controls and utilities

Signed-off-by: default avatarThierry MERLE <thierry.merle@free.fr>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent d8159a36
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
usbvision-objs  := usbvision-core.o usbvision-i2c.o usbvision-cards.o
usbvision-objs  := usbvision-core.o usbvision-video.o usbvision-i2c.o usbvision-cards.o

obj-$(CONFIG_VIDEO_USBVISION) += usbvision.o

+0 −1
Original line number Diff line number Diff line
@@ -30,7 +30,6 @@
#include "usbvision.h"

/* Supported Devices: A table for usbvision.c*/

struct usbvision_device_data_st  usbvision_device_data[] = {
	{0xFFF0, 0xFFF0, -1, CODEC_SAA7111, 3, V4L2_STD_NTSC,  1, 1, 1, 1, TUNER_PHILIPS_NTSC_M,       -1, -1, -1, -1, -1, "Custom Dummy USBVision Device"},  
	{0x0A6F, 0x0400, -1, CODEC_SAA7113, 4, V4L2_STD_NTSC,  1, 0, 1, 0, 0,                          -1, -1, -1, -1, -1, "Xanboo"}, 
Loading