Skip to content

Commit

Permalink
V4L/DVB (13710): [Mantis] FIX: Use swfilter (188/204) accordingly
Browse files Browse the repository at this point in the history
Signed-off-by: Manu Abraham <manu@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Manu Abraham authored and Mauro Carvalho Chehab committed Jan 17, 2010
1 parent 715d341 commit 01a8c3e
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion drivers/media/dvb/mantis/mantis_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 0 additions & 2 deletions drivers/media/dvb/mantis/mantis_dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
1 change: 1 addition & 0 deletions drivers/media/dvb/mantis/mantis_vp1033.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
1 change: 1 addition & 0 deletions drivers/media/dvb/mantis/mantis_vp1034.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions drivers/media/dvb/mantis/mantis_vp2033.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
1 change: 1 addition & 0 deletions drivers/media/dvb/mantis/mantis_vp3030.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ struct zl10353_config mantis_vp3030_config = {
struct mantis_hwconfig vp3030_mantis_config = {
.model_name = MANTIS_MODEL_NAME,
.dev_type = MANTIS_DEV_TYPE,
.ts_size = MANTIS_TS_188,
};

int panasonic_en57h12d5_set_params(struct dvb_frontend *fe,
Expand Down

0 comments on commit 01a8c3e

Please sign in to comment.