mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 07:10:50 +07:00
527dcdccd6
Disintegrate asm/system.h for PA-RISC. Signed-off-by: David Howells <dhowells@redhat.com> cc: linux-parisc@vger.kernel.org
20 lines
304 B
C
20 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
|