You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
322 B
18 lines
322 B
/* blackfin architecture timex specifications: Lineo Inc. 2001
|
|
*
|
|
* Based on: include/asm-m68knommu/timex.h
|
|
*/
|
|
|
|
#ifndef _ASMBLACKFIN_TIMEX_H
|
|
#define _ASMBLACKFIN_TIMEX_H
|
|
|
|
#define CLOCK_TICK_RATE 1000000 /* Underlying HZ */
|
|
|
|
typedef unsigned long cycles_t;
|
|
|
|
static inline cycles_t get_cycles(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
#endif
|
|
|