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: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
Родитель
be744eec23
Коммит
07aac5dc0d
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче