mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
post: fix compile issue for post tests on kirkwood
commit f31a911fe
(arm, post: add missing post_time_ms for arm)
enables get_ticks and get_tbclk for all arm based boards,
but kirkwood has currently no implementation for this. So
undefine this for kirkwood boards.
Signed-off-by: Holger Brunck <holger.brunck@keymile.com>
cc: Heiko Schocher <hs@denx.de>
cc: Prafulla Wadaskar <prafulla@marvell.com>
cc: Valentin Longchamp <valentin.longchamp@keymile.com>
This commit is contained in:
parent
c90a4dd79c
commit
2f88566aaa
1 changed files with 1 additions and 1 deletions
|
@ -495,7 +495,7 @@ void post_reloc(void)
|
|||
*/
|
||||
unsigned long post_time_ms(unsigned long base)
|
||||
{
|
||||
#if defined(CONFIG_PPC) || defined(CONFIG_ARM)
|
||||
#if defined(CONFIG_PPC) || defined(CONFIG_ARM) && !defined(CONFIG_KIRKWOOD)
|
||||
return (unsigned long)lldiv(get_ticks(), get_tbclk() / CONFIG_SYS_HZ)
|
||||
- base;
|
||||
#else
|
||||
|
|
Loading…
Reference in a new issue