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