powerpc: Delete __cpuinit usage from all users
[linux/fpc-iii.git] / arch / parisc / include / asm / switch_to.h
blob8ed8fea1e78412c90079a468f725c90698e22ddc
1 #ifndef __PARISC_SWITCH_TO_H
2 #define __PARISC_SWITCH_TO_H
4 struct task_struct;
6 extern struct task_struct *_switch_to(struct task_struct *, struct task_struct *);
8 #define switch_to(prev, next, last) do { \
9 (last) = _switch_to(prev, next); \
10 } while(0)
12 #endif /* __PARISC_SWITCH_TO_H */