xref: /openbmc/u-boot/arch/arm/cpu/arm720t/interrupts.c (revision c62db35d)
1 /*
2  * (C) Copyright 2002
3  * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
4  * Marius Groeger <mgroeger@sysgo.de>
5  *
6  * (C) Copyright 2002
7  * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
8  * Alex Zuepke <azu@sysgo.de>
9  *
10  * SPDX-License-Identifier:	GPL-2.0+
11  */
12 
13 #include <common.h>
14 
15 #if defined(CONFIG_TEGRA)
16 static ulong timestamp;
17 static ulong lastdec;
18 
19 int timer_init (void)
20 {
21 	/* No timer routines for tegra as yet */
22 	lastdec = 0;
23 	timestamp = 0;
24 
25 	return 0;
26 }
27 #endif
28