blob: 23a2a88f22111ec34fbfdd6d48f5c4ca2d283941 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef _MACHINE_AUTOCONF_H_
#define _MACHINE_AUTOCONF_H_
#ifdef _KERNEL
void initppc (u_int, u_int, u_int, void *);
void strayintr (int);
void lcsplx (int);
void inittodr (time_t);
void resettodr (void);
void cpu_initclocks (void);
void decr_intr (struct clockframe *);
void setstatclockrate (int);
int pfb_cnattach (int); /* pci/pfb.c */
#endif /* _KERNEL */
#endif /* _MACHINE_AUTOCONF_H_ */
|