mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 14:16:41 +07:00
216f03481d
Reviewed-by: Ingo Molnar <mingo@elte.hu> Acked-by: Stephen Neuendorffer <stephen.neuendorffer@xilinx.com> Acked-by: John Linn <john.linn@xilinx.com> Acked-by: John Williams <john.williams@petalogix.com> Signed-off-by: Michal Simek <monstr@monstr.eu>
19 lines
429 B
C
19 lines
429 B
C
/*
|
|
* Copyright (C) 2006 Atmark Techno, Inc.
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
* License. See the file "COPYING" in the main directory of this archive
|
|
* for more details.
|
|
*/
|
|
|
|
#ifndef _ASM_MICROBLAZE_TIMEX_H
|
|
#define _ASM_MICROBLAZE_TIMEX_H
|
|
|
|
#define CLOCK_TICK_RATE 1000 /* Timer input freq. */
|
|
|
|
typedef unsigned long cycles_t;
|
|
|
|
#define get_cycles() (0)
|
|
|
|
#endif /* _ASM_TIMEX_H */
|