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

Commit 1511c75b authored by Tomi Valkeinen's avatar Tomi Valkeinen
Browse files

OMAPDSS: fix AM43xx minimum pixel clock divider



AM43xx supports pixel clock divider of 1, just like all OMAP3+ SoCs. Fix
the minimum divider value.

Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent c517d838
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -440,7 +440,7 @@ static const struct dss_param_range omap3_dss_param_range[] = {

static const struct dss_param_range am43xx_dss_param_range[] = {
	[FEAT_PARAM_DSS_FCK]			= { 0, 200000000 },
	[FEAT_PARAM_DSS_PCD]			= { 2, 255 },
	[FEAT_PARAM_DSS_PCD]			= { 1, 255 },
	[FEAT_PARAM_DOWNSCALE]			= { 1, 4 },
	[FEAT_PARAM_LINEWIDTH]			= { 1, 1024 },
};