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

Commit 4d28d3d9 authored by Gareth Williams's avatar Gareth Williams Committed by Mauro Carvalho Chehab
Browse files

[media] Added USB Id & configuration array for Honestech Vidbox NW03



Adds support for the Honestech Vidbox NW03 USB capture device.

Signed-off-by: default avatarGareth Williams <gareth@garethwilliams.me.uk>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 6c3b906c
Loading
Loading
Loading
Loading
+18 −0
Original line number Diff line number Diff line
@@ -1892,6 +1892,22 @@ struct em28xx_board em28xx_boards[] = {
		.has_dvb       = 1,
		.ir_codes      = RC_MAP_PINNACLE_PCTV_HD,
	},
	/* eb1a:5006 Honestech VIDBOX NW03
	 * Empia EM2860, Philips SAA7113, Empia EMP202, No Tuner */
	[EM2860_BOARD_HT_VIDBOX_NW03] = {
		.name                = "Honestech Vidbox NW03",
		.tuner_type          = TUNER_ABSENT,
		.decoder             = EM28XX_SAA711X,
		.input               = { {
			.type     = EM28XX_VMUX_COMPOSITE1,
			.vmux     = SAA7115_COMPOSITE0,
			.amux     = EM28XX_AMUX_LINE_IN,
		}, {
			.type     = EM28XX_VMUX_SVIDEO,
			.vmux     = SAA7115_SVIDEO3,  /* S-VIDEO needs confirming */
			.amux     = EM28XX_AMUX_LINE_IN,
		} },
	},
};
const unsigned int em28xx_bcount = ARRAY_SIZE(em28xx_boards);

@@ -2037,6 +2053,8 @@ struct usb_device_id em28xx_id_table[] = {
			.driver_info = EM28174_BOARD_PCTV_460E },
	{ USB_DEVICE(0x2040, 0x1605),
			.driver_info = EM2884_BOARD_HAUPPAUGE_WINTV_HVR_930C },
	{ USB_DEVICE(0xeb1a, 0x5006),
			.driver_info = EM2860_BOARD_HT_VIDBOX_NW03 },
	{ },
};
MODULE_DEVICE_TABLE(usb, em28xx_id_table);
+1 −0
Original line number Diff line number Diff line
@@ -124,6 +124,7 @@
#define EM28174_BOARD_PCTV_460E                   80
#define EM2884_BOARD_HAUPPAUGE_WINTV_HVR_930C	  81
#define EM2884_BOARD_CINERGY_HTC_STICK		  82
#define EM2860_BOARD_HT_VIDBOX_NW03 		  83

/* Limits minimum and default number of buffers */
#define EM28XX_MIN_BUF 4