diff options
author | Igor M. Liplianin <liplianin@me.by> | 2008-09-09 12:57:47 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-10-12 07:37:04 -0400 |
commit | cc8c4f3a9c8dacff198438debd159ae4753744fc (patch) | |
tree | 7de1182075ed926596e35140007c77a8f71b31b9 /drivers/media/dvb/frontends/cx24116.c | |
parent | 3f8e51add2b7d37f16343e6bdcc63862d87ccd04 (diff) |
V4L/DVB (8994): Adjust MPEG initialization in cx24116
Adjust MPEG initialization in cx24116 in order to accomodate different
MPEG CLK position and polarity in different cards.
Signed-off-by: Igor M. Liplianin <liplianin@me.by>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/frontends/cx24116.c')
-rw-r--r-- | drivers/media/dvb/frontends/cx24116.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/media/dvb/frontends/cx24116.c b/drivers/media/dvb/frontends/cx24116.c index 2ff9e20c595f..666a0d89e83c 100644 --- a/drivers/media/dvb/frontends/cx24116.c +++ b/drivers/media/dvb/frontends/cx24116.c | |||
@@ -478,7 +478,10 @@ static int cx24116_load_firmware (struct dvb_frontend* fe, const struct firmware | |||
478 | cmd.args[0x01] = 0x01; | 478 | cmd.args[0x01] = 0x01; |
479 | cmd.args[0x02] = 0x75; | 479 | cmd.args[0x02] = 0x75; |
480 | cmd.args[0x03] = 0x00; | 480 | cmd.args[0x03] = 0x00; |
481 | cmd.args[0x04] = 0x02; | 481 | if (state->config->mpg_clk_pos_pol) |
482 | cmd.args[0x04] = state->config->mpg_clk_pos_pol; | ||
483 | else | ||
484 | cmd.args[0x04] = 0x02; | ||
482 | cmd.args[0x05] = 0x00; | 485 | cmd.args[0x05] = 0x00; |
483 | cmd.len= 0x06; | 486 | cmd.len= 0x06; |
484 | ret = cx24116_cmd_execute(fe, &cmd); | 487 | ret = cx24116_cmd_execute(fe, &cmd); |