mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
ARM: highbank: add missing get_tbclk
The get_tbclk function was missing and the recent commit "common: add possibility for readline_into_buffer timeout" makes it required. Signed-off-by: Rob Herring <rob.herring@calxeda.com>
This commit is contained in:
parent
bd0d90efcc
commit
f1e2d1762d
1 changed files with 5 additions and 0 deletions
|
@ -121,3 +121,8 @@ ulong get_timer_masked(void)
|
|||
{
|
||||
return tick_to_time(get_ticks());
|
||||
}
|
||||
|
||||
ulong get_tbclk(void)
|
||||
{
|
||||
return CONFIG_SYS_HZ;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue