Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 65861
b: refs/heads/master
c: 86184e0
h: refs/heads/master
i:
  65859: c610313
v: v3
  • Loading branch information
Steven Toth authored and Mauro Carvalho Chehab committed Oct 10, 2007
1 parent 0b8ba3f commit 4ec122a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 50 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 31bae4a62036a1d85aa9ee5864115dad2727336d
refs/heads/master: 86184e06da4b71fc24ae9505ec60ce95c098d0de
54 changes: 5 additions & 49 deletions trunk/drivers/media/video/cx23885/cx23885-dvb.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ static struct videobuf_queue_ops dvb_qops = {
.buf_release = dvb_buf_release,
};

static struct s5h1409_config hauppauge_hvr1800lp_config = {
static struct s5h1409_config hauppauge_generic_config = {
.demod_address = 0x32 >> 1,
.output_mode = S5H1409_SERIAL_OUTPUT,
.gpio = S5H1409_GPIO_OFF,
Expand All @@ -88,33 +88,7 @@ static struct s5h1409_config hauppauge_hvr1800lp_config = {
.status_mode = S5H1409_DEMODLOCKING
};

static struct s5h1409_config hauppauge_hvr1800_config = {
.demod_address = 0x32 >> 1,
.output_mode = S5H1409_SERIAL_OUTPUT,
.gpio = S5H1409_GPIO_ON,
.if_freq = 44000,
.inversion = S5H1409_INVERSION_OFF,
.status_mode = S5H1409_DEMODLOCKING
};

static struct s5h1409_config hauppauge_hvr1250_config = {
.demod_address = 0x32 >> 1,
.output_mode = S5H1409_SERIAL_OUTPUT,
.gpio = S5H1409_GPIO_ON,
.if_freq = 44000,
.inversion = S5H1409_INVERSION_OFF,
.status_mode = S5H1409_DEMODLOCKING
};

static struct mt2131_config hauppauge_hvr1800lp_rev2_tunerconfig = {
0x61
};

static struct mt2131_config hauppauge_hvr1800_tunerconfig = {
0x61
};

static struct mt2131_config hauppauge_hvr1250_tunerconfig = {
static struct mt2131_config hauppauge_generic_tunerconfig = {
0x61
};

Expand All @@ -128,33 +102,15 @@ static int dvb_register(struct cx23885_tsport *port)
/* init frontend */
switch (dev->board) {
case CX23885_BOARD_HAUPPAUGE_HVR1250:
port->dvb.frontend = dvb_attach(s5h1409_attach,
&hauppauge_hvr1250_config,
&dev->i2c_bus[0].i2c_adap);
if (port->dvb.frontend != NULL) {
dvb_attach(mt2131_attach, port->dvb.frontend,
&dev->i2c_bus[0].i2c_adap,
&hauppauge_hvr1250_tunerconfig, 0);
}
break;
case CX23885_BOARD_HAUPPAUGE_HVR1800lp:
port->dvb.frontend = dvb_attach(s5h1409_attach,
&hauppauge_hvr1800lp_config,
&dev->i2c_bus[0].i2c_adap);
if (port->dvb.frontend != NULL) {
dvb_attach(mt2131_attach, port->dvb.frontend,
&dev->i2c_bus[0].i2c_adap,
&hauppauge_hvr1800lp_rev2_tunerconfig, 0);
}
break;
case CX23885_BOARD_HAUPPAUGE_HVR1800:
case CX23885_BOARD_HAUPPAUGE_HVR1800lp:
port->dvb.frontend = dvb_attach(s5h1409_attach,
&hauppauge_hvr1800_config,
&hauppauge_generic_config,
&dev->i2c_bus[0].i2c_adap);
if (port->dvb.frontend != NULL) {
dvb_attach(mt2131_attach, port->dvb.frontend,
&dev->i2c_bus[0].i2c_adap,
&hauppauge_hvr1800_tunerconfig, 0);
&hauppauge_generic_tunerconfig, 0);
}
break;
default:
Expand Down

0 comments on commit 4ec122a

Please sign in to comment.