swh:1:snp:c3bf2749e3476071fa748f67b0ffa2fdc5fe49d9
Raw File
Tip revision: 9ee1c939d1cb936b1f98e8d81aeffab57bae46ab authored by Linus Torvalds on 17 June 2005, 19:48:29 UTC
Linux 2.6.12
Tip revision: 9ee1c93
timex.h
/*
 * linux/include/asm-v850/timex.h
 *
 * v850 architecture timex specifications
 */
#ifndef __V850_TIMEX_H__
#define __V850_TIMEX_H__

#define CLOCK_TICK_RATE	1193180 /* Underlying HZ */

typedef unsigned long cycles_t;

static inline cycles_t get_cycles(void)
{
	return 0;
}

#endif /* __V850_TIMEX_H__ */
back to top