mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
527dcdccd6
Disintegrate asm/system.h for PA-RISC. Signed-off-by: David Howells <dhowells@redhat.com> cc: linux-parisc@vger.kernel.org
19 lines
304 B
C
19 lines
304 B
C
/*
|
|
* linux/include/asm-parisc/timex.h
|
|
*
|
|
* PARISC architecture timex specifications
|
|
*/
|
|
#ifndef _ASMPARISC_TIMEX_H
|
|
#define _ASMPARISC_TIMEX_H
|
|
|
|
|
|
#define CLOCK_TICK_RATE 1193180 /* Underlying HZ */
|
|
|
|
typedef unsigned long cycles_t;
|
|
|
|
static inline cycles_t get_cycles (void)
|
|
{
|
|
return mfctl(16);
|
|
}
|
|
|
|
#endif
|