blob: 60bde4e0c06e57884179af18afa9124037f18f77 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef _CLOCK_H
#define _CLOCK_H
/*
* Various clock routines.
*/
extern unsigned long get_timer_freq(void);
extern unsigned long get_pci_bus_freq(void);
#endif /* _CLOCK_H */
|