leon: implement missing get_tbclk()

Without this patch SPARC/LEON does not build.

Reported-by: Tom Rini <trini@ti.com>
Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
This commit is contained in:
Daniel Hellstrom 2014-05-08 18:52:37 +02:00
parent 1c1c7506de
commit 4148b3d0dd
2 changed files with 10 additions and 0 deletions

View file

@ -110,6 +110,11 @@ int timer_interrupt_init_cpu(void)
return LEON2_TIMER1_IRQNO; return LEON2_TIMER1_IRQNO;
} }
ulong get_tbclk(void)
{
return TIMER_BASE_CLK;
}
/* /*
* This function is intended for SHORT delays only. * This function is intended for SHORT delays only.
*/ */

View file

@ -222,6 +222,11 @@ int timer_interrupt_init_cpu(void)
return gptimer_irq; return gptimer_irq;
} }
ulong get_tbclk(void)
{
return TIMER_BASE_CLK;
}
/* /*
* This function is intended for SHORT delays only. * This function is intended for SHORT delays only.
*/ */