diff options
| -rw-r--r-- | post/post.c | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/post/post.c b/post/post.c index 7c2bdf078..b3ed2e1b4 100644 --- a/post/post.c +++ b/post/post.c @@ -495,8 +495,7 @@ void post_reloc(void)   */  unsigned long post_time_ms(unsigned long base)  { -#if defined(CONFIG_PPC) || defined(CONFIG_BLACKFIN) || \ -    (defined(CONFIG_ARM) && !defined(CONFIG_KIRKWOOD)) +#if defined(CONFIG_PPC) || defined(CONFIG_BLACKFIN) || defined(CONFIG_ARM)  	return (unsigned long)lldiv(get_ticks(), get_tbclk() / CONFIG_SYS_HZ)  		- base;  #else |