diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2013-04-11 14:47:53 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2013-04-16 20:38:18 -0400 |
commit | f26588947b613925f11f5336320ff4d11b617a62 (patch) | |
tree | f2664f97538c888eee8d98a5475eeae72f8d026c /drivers/media | |
parent | c0c6ed8d0479d47949e2345510b8fc8af41f7ed2 (diff) |
[media] r820t: Fix hp_cor filter mask
The bit mask was inverted here.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Tested-by: Antti Palosaari <crope@iki.fi>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/tuners/r820t.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/tuners/r820t.c b/drivers/media/tuners/r820t.c index f5a5fb03dfd5..c644e90a5907 100644 --- a/drivers/media/tuners/r820t.c +++ b/drivers/media/tuners/r820t.c | |||
@@ -1102,7 +1102,7 @@ static int r820t_set_tv_standard(struct r820t_priv *priv, | |||
1102 | return rc; | 1102 | return rc; |
1103 | 1103 | ||
1104 | /* Set BW, Filter_gain, & HP corner */ | 1104 | /* Set BW, Filter_gain, & HP corner */ |
1105 | rc = r820t_write_reg_mask(priv, 0x0b, hp_cor, 0x10); | 1105 | rc = r820t_write_reg_mask(priv, 0x0b, hp_cor, 0xef); |
1106 | if (rc < 0) | 1106 | if (rc < 0) |
1107 | return rc; | 1107 | return rc; |
1108 | 1108 | ||