mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1242 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
9 lines
176 B
C
9 lines
176 B
C
#ifndef _CLOCK_H
|
|
#define _CLOCK_H
|
|
|
|
/*
|
|
* Various clock routines.
|
|
*/
|
|
extern unsigned long get_clock_speed(void);
|
|
extern unsigned long get_bus_freq(void);
|
|
#endif /* _CLOCK_H */
|