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

Commit af1c8b84 authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "interconnect: qcom: Fix the link error on 32bit architecture"

parents ad191fdc b3cf25f2
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -61,7 +61,9 @@ static u64 bcm_div(u64 num, u64 base)
	if (num && num < base)
		return 1;

	return num / base;
	do_div(num, base);

	return num;
}

static void bcm_aggregate(struct qcom_icc_bcm *bcm, bool init)