diff options
author | Devin Heitmueller <dheitmueller@kernellabs.com> | 2009-07-12 17:44:19 -0400 |
---|---|---|
committer | Devin Heitmueller <dheitmueller@kernellabs.com> | 2009-07-12 17:44:19 -0400 |
commit | fa9a1b962b866f12ef1eaa0fd14cc9f828b251d6 (patch) | |
tree | 0650cd7e1ee3e522cb0e51efa7a46c6b20c74750 | |
parent | 13f1c7cf90c6107ba936578859f469bae7e31a96 (diff) | |
download | mediapointer-dvb-s2-fa9a1b962b866f12ef1eaa0fd14cc9f828b251d6.tar.gz mediapointer-dvb-s2-fa9a1b962b866f12ef1eaa0fd14cc9f828b251d6.tar.bz2 |
em28xx: fix typo in mt352 init sequence for Terratec Cinergy T XS USB
From: Devin Heitmueller <dheitmueller@kernellabs.com>
Andy walls pointed out that we were passing 0x5d to the TUNER_GO register,
instead of 0x01. Set the register properly (note the code did still work with
the incorrect value, so this does not address a regression).
Thanks to Andy Walls for noticing the issue.
Priority: normal
Cc: Andy Walls <awalls@radix.net>
Signed-off-by: Devin Heitmueller <dheitmueller@kernellabs.com>
-rw-r--r-- | linux/drivers/media/video/em28xx/em28xx-dvb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/video/em28xx/em28xx-dvb.c b/linux/drivers/media/video/em28xx/em28xx-dvb.c index 56833da59..ca881d7c0 100644 --- a/linux/drivers/media/video/em28xx/em28xx-dvb.c +++ b/linux/drivers/media/video/em28xx/em28xx-dvb.c @@ -273,7 +273,7 @@ static int mt352_terratec_xs_init(struct dvb_frontend *fe) static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 }; static u8 trl_nom_cfg[] = { TRL_NOMINAL_RATE_1, 0x64, 0x00 }; static u8 tps_given_cfg[] = { TPS_GIVEN_1, 0x40, 0x80, 0x50 }; - static u8 tuner_go[] = { TUNER_GO, 0x5d}; + static u8 tuner_go[] = { TUNER_GO, 0x01}; mt352_write(fe, clock_config, sizeof(clock_config)); udelay(200); |