Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5ab6b267 authored by Jose Alberto Reguero's avatar Jose Alberto Reguero Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (4620): Fix AGC configuration for MOD3000P-based boards



While converting the configuration for the old DiB3000MC-module to the new one
a wrong AGC configuration was introduced.
This is using the old one again.

Signed-off-by: default avatarJose Alberto Reguero <jareguero@telefonica.net>
Signed-off-by: default avatarPatrick Boettcher <pb@linuxtv.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent 6386828c
Loading
Loading
Loading
Loading
+9 −9
Original line number Diff line number Diff line
@@ -203,20 +203,20 @@ static struct dibx000_agc_config dib3000p_panasonic_agc_config = {

	.agc1_max = 56361,
	.agc1_min = 22282,
	.agc2_max = 43254,
	.agc2_max = 47841,
	.agc2_min = 36045,

	.agc1_pt1 = 0x65,
	.agc1_pt2 = 0xff,
	.agc1_pt1 = 0x3b,
	.agc1_pt2 = 0x6b,

	.agc1_slope1 = 0x40,
	.agc1_slope2 = 0xff,
	.agc1_slope1 = 0x55,
	.agc1_slope2 = 0x1d,

	.agc2_pt1 = 0,
	.agc2_pt2 = 0x8a,
	.agc2_pt2 = 0x0a,

	.agc2_slope1 = 0x11,
	.agc2_slope2 = 0x14,
	.agc2_slope1 = 0x95,
	.agc2_slope2 = 0x1e,
};

static struct dib3000mc_config mod3000p_dib3000p_config = {