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

Commit beafd1dd authored by Joonwoo Park's avatar Joonwoo Park
Browse files

sched: use correct Kconfig macro name CONFIG_SCHED_HMP_CSTATE_AWARE



Fix macro name so CONFIG_SCHED_HMP_CSTATE_AWARE=y to take effect.

Change-Id: I0218b36b2d74974f50a173a0ac3bc59156c57624
Signed-off-by: default avatarJoonwoo Park <joonwoop@codeaurora.org>
parent af1db6e0
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -3148,7 +3148,7 @@ next_best_cluster(struct sched_cluster *cluster, struct cpu_select_env *env,
	return next;
}

#ifdef SCHED_HMP_CSTATE_AWARE
#ifdef CONFIG_SCHED_HMP_CSTATE_AWARE
static void __update_cluster_stats(int cpu, struct cluster_cpu_stats *stats,
				   struct cpu_select_env *env, int cpu_cost)
{
@@ -3211,7 +3211,7 @@ static void __update_cluster_stats(int cpu, struct cluster_cpu_stats *stats,
		stats->best_cpu = cpu;
	}
}
#else /* SCHED_HMP_CSTATE_AWARE */
#else /* CONFIG_SCHED_HMP_CSTATE_AWARE */
static void __update_cluster_stats(int cpu, struct cluster_cpu_stats *stats,
				   struct cpu_select_env *env, int cpu_cost)
{