Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: 5dd34572ad9a3be430632dd42e4af2ea370b397b authored by Linus Torvalds on 12 June 2008, 21:22:24 UTC
Linux 2.6.26-rc6
Tip revision: 5dd3457
timex.h
/*
 * linux/include/asm-m68k/timex.h
 *
 * m68k architecture timex specifications
 */
#ifndef _ASMm68k_TIMEX_H
#define _ASMm68k_TIMEX_H

#define CLOCK_TICK_RATE	1193180 /* Underlying HZ */

typedef unsigned long cycles_t;

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

#endif
back to top