https://github.com/torvalds/linux
Raw File
Tip revision: ae99a78af33f00565a05dbbc6ca9b247fed002c5 authored by Linus Torvalds on 31 October 2006, 03:37:36 UTC
Linux 2.6.19-rc4
Tip revision: ae99a78
timex.h
/*
 * 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 */
back to top