Commit 07aac5dc authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

media: qcom: mark long long consts as such

Fix those warnings when building on i386:

	drivers/media/platform/qcom/camss-8x16/camss-csiphy.c:333:22: warning: constant 1000000000000 is so big it is long long
	drivers/media/platform/qcom/camss-8x16/camss-csiphy.c:339:32: warning: constant 1000000000000 is so big it is long long
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent be744eec
......@@ -330,13 +330,13 @@ static u8 csiphy_settle_cnt_calc(struct csiphy_device *csiphy)
}
mipi_clock = pixel_clock * bpp / (2 * num_lanes);
ui = div_u64(1000000000000, mipi_clock);
ui = div_u64(1000000000000LL, mipi_clock);
ui /= 2;
t_hs_prepare_max = 85000 + 6 * ui;
t_hs_prepare_zero_min = 145000 + 10 * ui;
t_hs_settle = (t_hs_prepare_max + t_hs_prepare_zero_min) / 2;
timer_period = div_u64(1000000000000, csiphy->timer_clk_rate);
timer_period = div_u64(1000000000000LL, csiphy->timer_clk_rate);
settle_cnt = t_hs_settle / timer_period;
return settle_cnt;
......
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