Commit 01a8c3ee authored by Manu Abraham's avatar Manu Abraham Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (13710): [Mantis] FIX: Use swfilter (188/204) accordingly

parent 715d341c
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -64,13 +64,15 @@
#define mmor(dat, addr)		mmwrite((dat) | mmread(addr), addr)
#define mmaor(dat, addr)	mmwrite((dat) | ((mask) & mmread(addr)), addr)

#define MANTIS_TS_188		0
#define MANTIS_TS_204		1

struct mantis_hwconfig {
	char			*model_name;
	char			*dev_type;
	u32			ts_size;
};


struct mantis_pci {
	/*	PCI stuff		*/
	u16			vendor_id;
+0 −2
Original line number Diff line number Diff line
@@ -154,8 +154,6 @@ int mantis_dma_init(struct mantis_pci *mantis)
	return err;
}



static inline void mantis_risc_program(struct mantis_pci *mantis)
{
	u32 buf_pos = 0;
+1 −0
Original line number Diff line number Diff line
@@ -87,6 +87,7 @@ struct stv0299_config lgtdqcs001f_config = {
struct mantis_hwconfig vp1033_mantis_config = {
	.model_name		= MANTIS_MODEL_NAME,
	.dev_type		= MANTIS_DEV_TYPE,
	.ts_size		= MANTIS_TS_204,
};

int lgtdqcs001f_tuner_set(struct dvb_frontend *fe,
+1 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@ struct mb86a16_config vp1034_config = {
struct mantis_hwconfig vp1034_mantis_config = {
	.model_name	= MANTIS_MODEL_NAME,
	.dev_type	= MANTIS_DEV_TYPE,
	.ts_size	= MANTIS_TS_204,
};

int vp1034_set_voltage(struct dvb_frontend *fe, fe_sec_voltage_t voltage)
+1 −0
Original line number Diff line number Diff line
@@ -27,6 +27,7 @@
struct mantis_hwconfig vp2033_mantis_config = {
	.model_name	= MANTIS_MODEL_NAME,
	.dev_type	= MANTIS_DEV_TYPE,
	.ts_size	= MANTIS_TS_188,
};

struct cu1216_config philips_cu1216_config = {
Loading