1/*
2 * linux/include/asm-parisc/timex.h
3 *
4 * PARISC architecture timex specifications
5 */
6#ifndef _ASMPARISC_TIMEX_H
7#define _ASMPARISC_TIMEX_H
8
9#include <asm/system.h>
10#include <linux/time.h>
11
12typedef unsigned long cycles_t;
13
14extern cycles_t cacheflush_time;
15
16static inline cycles_t get_cycles (void)
17{
18	return mfctl(16);
19}
20
21#define vxtime_lock()		do {} while (0)
22#define vxtime_unlock()		do {} while (0)
23
24#endif
25