blob: 8b26ac5c854e54876c5d625d7ffca9cb8d10c158 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef __ASM_IDLE_H
#define __ASM_IDLE_H
#include <linux/linkage.h>
extern void (*cpu_wait)(void);
extern asmlinkage void r4k_wait(void);
extern void r4k_wait_irqoff(void);
extern void __pastwait(void);
#endif /* __ASM_IDLE_H */
|