diff options
author | Heiko Schocher <hs@denx.de> | 2011-09-14 19:34:33 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-10-27 21:56:30 +0200 |
commit | f31a911fe2ceb59a810b295171da7668a9a87c92 (patch) | |
tree | 59234c2747756d16464255b2ade2fb93a53163d0 /post | |
parent | e92372c8a70d54cdba732fb9da914337e0a89d28 (diff) |
arm, post: add missing post_time_ms for arm
Signed-off-by: Heiko Schocher <hs@denx.de>
Cc: Albert ARIBAUD <albert.u.boot@aribaud.net>
Diffstat (limited to 'post')
-rw-r--r-- | post/post.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/post/post.c b/post/post.c index 636d93fc8bc..dc9c0f2cf89 100644 --- a/post/post.c +++ b/post/post.c @@ -500,7 +500,7 @@ void post_reloc(void) */ unsigned long post_time_ms(unsigned long base) { -#ifdef CONFIG_PPC +#if defined(CONFIG_PPC) || defined(CONFIG_ARM) return (unsigned long)(get_ticks() / (get_tbclk() / CONFIG_SYS_HZ)) - base; #else |