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

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

Merge "qcom: cdsp: Compilation error fix for 32-bit kernel"

parents b9d5a1f4 6b7a5c9b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -543,8 +543,8 @@ static void process_delayed_rm_request(struct work_struct *work)
			(curr_timestamp < timestamp)) {
		if ((timestamp - curr_timestamp) <
		(gcdsprm.qos_max_ms * SYS_CLK_TICKS_PER_MS))
			time_ms = (timestamp - curr_timestamp) /
						SYS_CLK_TICKS_PER_MS;
			time_ms = div_u64((timestamp - curr_timestamp),
						SYS_CLK_TICKS_PER_MS);
		else
			break;
		gcdsprm.dt_state = CDSP_DELAY_THREAD_BEFORE_SLEEP;