diff options
author | Antti Palosaari <[email protected]> | 2014-02-01 17:28:21 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <[email protected]> | 2014-03-28 18:09:49 -0300 |
commit | 418a97cbcef9644e36d87140a6962d2cd4743e74 (patch) | |
tree | 8442deb4b416765bef1ccbed76376927d1fb84f4 | |
parent | 30d652823de5fd7907d40e969a2d8e23938d8d03 (diff) |
[media] m88ds3103: fix bug on .set_tone()
Band switching didn't worked always reliably as there was one
register bit set wrong.
Thanks to Robert Schlabbach for pointing this bug and solution.
Reported-by: Robert Schlabbach <[email protected]>
Signed-off-by: Antti Palosaari <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
-rw-r--r-- | drivers/media/dvb-frontends/m88ds3103.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb-frontends/m88ds3103.c b/drivers/media/dvb-frontends/m88ds3103.c index b8f8df073079..2ef8ce13fb60 100644 --- a/drivers/media/dvb-frontends/m88ds3103.c +++ b/drivers/media/dvb-frontends/m88ds3103.c @@ -944,7 +944,7 @@ static int m88ds3103_set_tone(struct dvb_frontend *fe, switch (fe_sec_tone_mode) { case SEC_TONE_ON: tone = 0; - reg_a1_mask = 0x87; + reg_a1_mask = 0x47; break; case SEC_TONE_OFF: tone = 1; |