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

Commit fb215d99 authored by Pavankumar Kondeti's avatar Pavankumar Kondeti Committed by Gerrit - the friendly Code Review server
Browse files

sched/tune: Fix compilation issue when WALT is disabled



schedtune_attach() functionality is only needed when WALT is enabled.
Define a stub function for it when WALT is disabled.

Change-Id: I57a9543f53cdee1e5930756f3f06f47b2f88152e
Signed-off-by: default avatarPavankumar Kondeti <pkondeti@codeaurora.org>
parent 142c745e
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -574,6 +574,10 @@ static void schedtune_attach(struct cgroup_taskset *tset)
	cgroup_taskset_for_each(task, css, tset)
		sync_cgroup_colocation(task, colocate);

}
#else
static void schedtune_attach(struct cgroup_taskset *tset)
{
}
#endif