1 #ifndef _MACHINE_AUTOCONF_H_ 2 #define _MACHINE_AUTOCONF_H_ 3 4 #ifdef _KERNEL 5 void initppc (u_int, u_int, char *); 6 void install_extint (void (*)(void)); 7 void dumpsys (void); 8 void softnet (void); 9 void strayintr (int); 10 11 void inittodr (time_t); 12 void resettodr (void); 13 void cpu_initclocks (void); 14 void decr_intr (struct clockframe *); 15 void setstatclockrate (int); 16 17 #ifdef __BROKEN_DK_ESTABLISH 18 void dk_cleanup(void); 19 20 extern char platform_name[]; 21 #endif 22 23 #endif /* _KERNEL */ 24 25 #endif /* _MACHINE_AUTOCONF_H_ */ 26