aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/media/common/tuners/tuner-xc2028.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/media/common/tuners/tuner-xc2028.c b/drivers/media/common/tuners/tuner-xc2028.c
index 96f45a80fe56..be51c294b375 100644
--- a/drivers/media/common/tuners/tuner-xc2028.c
+++ b/drivers/media/common/tuners/tuner-xc2028.c
@@ -1135,11 +1135,13 @@ static int xc2028_set_params(struct dvb_frontend *fe,
1135 1135
1136 /* All S-code tables need a 200kHz shift */ 1136 /* All S-code tables need a 200kHz shift */
1137 if (priv->ctrl.demod) { 1137 if (priv->ctrl.demod) {
1138 demod = priv->ctrl.demod;
1139
1138 /* 1140 /*
1139 * Newer firmwares require a 200 kHz offset only for ATSC 1141 * Newer firmwares require a 200 kHz offset only for ATSC
1140 */ 1142 */
1141 if (type == ATSC || priv->firm_version < 0x0302) 1143 if (type == ATSC || priv->firm_version < 0x0302)
1142 demod = priv->ctrl.demod + 200; 1144 demod += 200;
1143 /* 1145 /*
1144 * The DTV7 S-code table needs a 700 kHz shift. 1146 * The DTV7 S-code table needs a 700 kHz shift.
1145 * 1147 *