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

Commit 17518189 authored by Tomi Valkeinen's avatar Tomi Valkeinen
Browse files

OMAPDSS: DSI: fix wrong unsigned long long use



dsi_configure_dispc_clocks() stores dsi func clock into unsigned long
long, but it should really be just unsigned long. Fix this.

Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent 7b3926b3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4611,7 +4611,7 @@ static int dsi_configure_dispc_clocks(struct platform_device *dsidev)
	struct dsi_data *dsi = dsi_get_dsidrv_data(dsidev);
	struct dispc_clock_info dispc_cinfo;
	int r;
	unsigned long long fck;
	unsigned long fck;

	fck = dsi_get_pll_hsdiv_dispc_rate(dsidev);