projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bc760cd
)
[media] tda10071: fix spec inversion reporting
author
Antti Palosaari
<crope@iki.fi>
Mon, 7 Jul 2014 12:52:28 +0000
(09:52 -0300)
committer
Mauro Carvalho Chehab
<m.chehab@samsung.com>
Tue, 15 Jul 2014 00:03:23 +0000
(21:03 -0300)
Inversion ON was reported as inversion OFF and vice versa.
Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
drivers/media/dvb-frontends/tda10071.c
patch
|
blob
|
history
diff --git
a/drivers/media/dvb-frontends/tda10071.c
b/drivers/media/dvb-frontends/tda10071.c
index 49874e76548b1ead3510beb7a718674f3b5a0865..d590798a63674a21caa53520030c59e119595daf 100644
(file)
--- a/
drivers/media/dvb-frontends/tda10071.c
+++ b/
drivers/media/dvb-frontends/tda10071.c
@@
-838,10
+838,10
@@
static int tda10071_get_frontend(struct dvb_frontend *fe)
switch ((buf[1] >> 0) & 0x01) {
case 0:
- c->inversion = INVERSION_O
FF
;
+ c->inversion = INVERSION_O
N
;
break;
case 1:
- c->inversion = INVERSION_O
N
;
+ c->inversion = INVERSION_O
FF
;
break;
}