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

Unverified Commit 4ca330d4 authored by Michael Bestas's avatar Michael Bestas
Browse files

sched: Fix compilation when CONFIG_SCHED_WALT is disabled

Fixes: f1771866 ("sched/fair: Add policy for restricting
prefer_spread to newly idle balance")

Change-Id: I01e3a0576875957a1cee036b0462fd48c2d8a275
parent c2ac1fc7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -469,7 +469,7 @@ static inline bool prefer_spread_on_idle(int cpu, bool new_ilb)

#else /* CONFIG_SCHED_WALT */

static inline bool prefer_spread_on_idle(int cpu)
static inline bool prefer_spread_on_idle(int cpu, bool new_ilb)
{
	return false;
}