From fb6bcec3cec6acedaebc92aef7f4203e2502e318 Mon Sep 17 00:00:00 2001 From: Steven Toth Date: Sat, 28 Mar 2015 09:07:47 -0300 Subject: [PATCH] [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 Signed-off-by: Hans Verkuil Signed-off-by: Mauro Carvalho Chehab --- drivers/media/pci/saa7164/saa7164-dvb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- 2.34.1