1 #ifndef _MACHINE_FPU_H 2 #define _MACHINE_FPU_H 3 4 #ifdef _KERNEL 5 6 void save_vsx(struct proc *); 7 void restore_vsx(struct proc *); 8 9 #endif 10 11 #endif /* _MACHINE_FPU_H_ */ 12