blob: a873e24113cf7430cc5527f99278d1e11e2d6f0e (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 | /*
 * linux/include/asm-sh/timex.h
 *
 * sh architecture timex specifications
 */
#ifndef __ASM_SH_TIMEX_H
#define __ASM_SH_TIMEX_H
#define CLOCK_TICK_RATE		(CONFIG_SH_PCLK_FREQ / 4) /* Underlying HZ */
typedef unsigned long long cycles_t;
static __inline__ cycles_t get_cycles (void)
{
	return 0;
}
#endif /* __ASM_SH_TIMEX_H */
 |