idle.c (762f99f4f3cb41a775b5157dd761217beba65873) | idle.c (89b3098703bd2aa3237ef10a704e6a5838e6ea69) |
---|---|
1// SPDX-License-Identifier: GPL-2.0-only 2/* 3 * Low-level idle sequences 4 */ 5 6#include <linux/cpu.h> 7#include <linux/irqflags.h> 8 --- 28 unchanged lines hidden (view full) --- 37 */ 38void noinstr arch_cpu_idle(void) 39{ 40 /* 41 * This should do all the clock switching and wait for interrupt 42 * tricks 43 */ 44 cpu_do_idle(); | 1// SPDX-License-Identifier: GPL-2.0-only 2/* 3 * Low-level idle sequences 4 */ 5 6#include <linux/cpu.h> 7#include <linux/irqflags.h> 8 --- 28 unchanged lines hidden (view full) --- 37 */ 38void noinstr arch_cpu_idle(void) 39{ 40 /* 41 * This should do all the clock switching and wait for interrupt 42 * tricks 43 */ 44 cpu_do_idle(); |
45 raw_local_irq_enable(); | |
46} | 45} |