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:
Rob Herring 2012-02-21 12:52:27 +00:00 committed by Albert ARIBAUD
parent bd0d90efcc
commit f1e2d1762d
1 changed files with 5 additions and 0 deletions

View File

@ -121,3 +121,8 @@ ulong get_timer_masked(void)
{
return tick_to_time(get_ticks());
}
ulong get_tbclk(void)
{
return CONFIG_SYS_HZ;
}