u-boot/arch/arm/cpu/arm720t/interrupts.c

34 lines
550 B
C
Raw Normal View History

2002-11-03 00:24:07 +00:00
/*
* (C) Copyright 2002
* Sysgo Real-Time Solutions, GmbH <www.elinos.com>
* Marius Groeger <mgroeger@sysgo.de>
*
* (C) Copyright 2002
* Sysgo Real-Time Solutions, GmbH <www.elinos.com>
* Alex Zuepke <azu@sysgo.de>
*
* SPDX-License-Identifier: GPL-2.0+
2002-11-03 00:24:07 +00:00
*/
#include <common.h>
2002-11-03 00:24:07 +00:00
#ifdef CONFIG_USE_IRQ
void do_irq (struct pt_regs *pt_regs)
{
}
#endif
#if defined(CONFIG_TEGRA)
static ulong timestamp;
static ulong lastdec;
int timer_init (void)
{
/* No timer routines for tegra as yet */
lastdec = 0;
2002-11-03 00:24:07 +00:00
timestamp = 0;
return 0;
2002-11-03 00:24:07 +00:00
}
#endif