aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-blackfin/timex.h
blob: 828590117f51acd105fe52c0f7e69e4c30eee9a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* 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