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_ARCH_TEGRA)
15static ulong timestamp;
16static ulong lastdec;
17
18int 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