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

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

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
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -330,13 +330,13 @@ static u8 csiphy_settle_cnt_calc(struct csiphy_device *csiphy)
	}
	}


	mipi_clock = pixel_clock * bpp / (2 * num_lanes);
	mipi_clock = pixel_clock * bpp / (2 * num_lanes);
	ui = div_u64(1000000000000, mipi_clock);
	ui = div_u64(1000000000000LL, mipi_clock);
	ui /= 2;
	ui /= 2;
	t_hs_prepare_max = 85000 + 6 * ui;
	t_hs_prepare_max = 85000 + 6 * ui;
	t_hs_prepare_zero_min = 145000 + 10 * ui;
	t_hs_prepare_zero_min = 145000 + 10 * ui;
	t_hs_settle = (t_hs_prepare_max + t_hs_prepare_zero_min) / 2;
	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;
	settle_cnt = t_hs_settle / timer_period;


	return settle_cnt;
	return settle_cnt;