projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c0c6ed8
)
[media] r820t: Fix hp_cor filter mask
author
Mauro Carvalho Chehab
<mchehab@redhat.com>
Thu, 11 Apr 2013 18:47:53 +0000
(15:47 -0300)
committer
Mauro Carvalho Chehab
<mchehab@redhat.com>
Wed, 17 Apr 2013 00:38:18 +0000
(21:38 -0300)
The bit mask was inverted here.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Tested-by: Antti Palosaari <crope@iki.fi>
drivers/media/tuners/r820t.c
patch
|
blob
|
history
diff --git
a/drivers/media/tuners/r820t.c
b/drivers/media/tuners/r820t.c
index f5a5fb03dfd5c53a08b7e85387d977bc70670b07..c644e90a5907174be673a1a3fdb7ad184b151d95 100644
(file)
--- 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,
return rc;
/* Set BW, Filter_gain, & HP corner */
- rc = r820t_write_reg_mask(priv, 0x0b, hp_cor, 0x
10
);
+ rc = r820t_write_reg_mask(priv, 0x0b, hp_cor, 0x
ef
);
if (rc < 0)
return rc;