URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [linux/] [linux-2.4/] [include/] [asm-or32/] [timex.h] - Rev 1779
Go to most recent revision | Compare with Previous | Blame | View Log
/* * linux/include/asm-or32/timex.h * * Based on: * include/asm-cris/timex.h */ #ifndef _OR32_TIMEX_H #define _OR32_TIMEX_H #include <asm/param.h> #define SYS_TICK_PER ((CONFIG_OR32_SYS_CLK*1000000)/HZ) /* * We don't have a cycle-counter.. but we do not support SMP anyway where this is * used so it does not matter. */ typedef unsigned int cycles_t; static inline cycles_t get_cycles(void) { return 0; } #define vxtime_lock() do {} while (0) #define vxtime_unlock() do {} while (0) #endif
Go to most recent revision | Compare with Previous | Blame | View Log