static bool __init intel_idle_max_cstate_reached()

in intel_idle.c [1183:1190]


static bool __init intel_idle_max_cstate_reached(int cstate)
{
	if (cstate + 1 > max_cstate) {
		pr_info("max_cstate %d reached\n", max_cstate);
		return true;
	}
	return false;
}