2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* linux/include/asm-cris/timex.h
|
|
|
|
*
|
|
|
|
* CRIS architecture timex specifications
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ASM_CRIS_TIMEX_H
|
|
|
|
#define _ASM_CRIS_TIMEX_H
|
|
|
|
|
|
|
|
#include <asm/arch/timex.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We don't have a cycle-counter.. but we do not support SMP anyway where this is
|
|
|
|
* used so it does not matter.
|
|
|
|
*/
|
|
|
|
|
2005-07-27 20:44:43 +02:00
|
|
|
typedef unsigned long long cycles_t;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-11-07 09:58:44 +01:00
|
|
|
static inline cycles_t get_cycles(void)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|