Documentation: Fix sphinx configuration
[coreboot.git] / src / include / delay.h
blob1c481be917c05e6a0653033544c81ba789f9b5a7
1 #ifndef DELAY_H
2 #define DELAY_H
4 #include <stdint.h>
6 #if CONFIG_UDELAY_LAPIC_FIXED_FSB != 0
7 static inline u32 get_timer_fsb(void)
9 return CONFIG_UDELAY_LAPIC_FIXED_FSB;
11 #else
12 u32 get_timer_fsb(void);
13 #endif
15 void init_timer(void);
17 void udelay(unsigned int usecs);
18 void mdelay(unsigned int msecs);
19 void delay(unsigned int secs);
20 #endif /* DELAY_H */