Commit c56812fc authored by Tomi Valkeinen's avatar Tomi Valkeinen

OMAPDSS: fix fck field types

'fck' field in dpi and sdi clock calculation struct is 'unsigned long
long', even though it should be 'unsigned long'. This hasn't caused any
issues so far.

Fix the field's type.
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent eec77da2
......@@ -117,7 +117,7 @@ struct dpi_clk_calc_ctx {
/* outputs */
struct dsi_clock_info dsi_cinfo;
unsigned long long fck;
unsigned long fck;
struct dispc_clock_info dispc_cinfo;
};
......
......@@ -46,7 +46,7 @@ static struct {
struct sdi_clk_calc_ctx {
unsigned long pck_min, pck_max;
unsigned long long fck;
unsigned long fck;
struct dispc_clock_info dispc_cinfo;
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment