mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
PXA: Fix missing get_tbclk() breaking vpac boards
Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
This commit is contained in:
parent
60994b99b6
commit
30a14ea2b1
1 changed files with 5 additions and 0 deletions
|
@ -94,3 +94,8 @@ void __udelay(unsigned long usec)
|
|||
while (get_ticks() < tmp) /* loop till event */
|
||||
/*NOP*/;
|
||||
}
|
||||
|
||||
ulong get_tbclk(void)
|
||||
{
|
||||
return TIMER_FREQ_HZ;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue