summaryrefslogtreecommitdiff
path: root/drivers/media/pci/saa7164/saa7164-dvb.c
diff options
context:
space:
mode:
authorSteven Toth <stoth@kernellabs.com>2015-03-28 09:07:47 -0300
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>2015-05-01 07:23:21 -0300
commitfb6bcec3cec6acedaebc92aef7f4203e2502e318 (patch)
treee9cbe6dcfb1060b4989a50c9fdc8576daf9b8920 /drivers/media/pci/saa7164/saa7164-dvb.c
parent63a412ec36ce90daec425ed0ab127e1af7e061fb (diff)
[media] saa7164: fix HVR2255 ATSC inversion issue
QAM mode in the LGDT3306 auto detects inversion. VSB does not. Forgot to include tis fact in the original patch set. Tested with QAM and VSB after this patch, working fine. Signed-off-by: Steven Toth <stoth@kernellabs.com> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/pci/saa7164/saa7164-dvb.c')
-rw-r--r--drivers/media/pci/saa7164/saa7164-dvb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/pci/saa7164/saa7164-dvb.c b/drivers/media/pci/saa7164/saa7164-dvb.c
index 3954f0afbbae..0fdc9447a0fe 100644
--- a/drivers/media/pci/saa7164/saa7164-dvb.c
+++ b/drivers/media/pci/saa7164/saa7164-dvb.c
@@ -110,7 +110,7 @@ static struct lgdt3306a_config hauppauge_hvr2255b_config = {
};
static struct si2157_config hauppauge_hvr2255_tuner_config = {
- .inversion = 0,
+ .inversion = 1,
};
static int si2157_attach(struct saa7164_port *port, struct i2c_adapter *adapter,