summaryrefslogtreecommitdiff
path: root/kernel/cpu/idle.c
blob: 1908f00e0e98677d122817356249e3596f03f4e0 (plain)
1
2
3
4
5
6
7
8
9
10
/*
 * Generic entry point for the idle threads
 */
#include <linux/sched.h>
#include <linux/cpu.h>

void cpu_startup_entry(enum cpuhp_state state)
{
	cpu_idle();
}