Skip to content

Commit

Permalink
[media] tvaudio: fix two tea6420 errors
Browse files Browse the repository at this point in the history
The inputmask for the tea6420 wasn't set and the wrong mute register value
was used.

Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Hans Verkuil authored and Mauro Carvalho Chehab committed Feb 5, 2013
1 parent a346caa commit 71df09b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/media/i2c/tvaudio.c
Original file line number Diff line number Diff line change
Expand Up @@ -1617,7 +1617,8 @@ static struct CHIPDESC chiplist[] = {

.inputreg = -1,
.inputmap = { TEA6420_S_SA, TEA6420_S_SB, TEA6420_S_SC },
.inputmute = TEA6300_S_GMU,
.inputmute = TEA6420_S_GMU,
.inputmask = 0x07,
},
{
.name = "tda8425",
Expand Down

0 comments on commit 71df09b

Please sign in to comment.