From: Valentin Longchamp Date: Fri, 30 Mar 2012 03:29:28 +0000 (+0000) Subject: post: remove #warning for kirkwood CPUs X-Git-Tag: v2012.04-rc1~18 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=4e518b8875b0444a546e89fc330c57069ec3f204;p=u-boot post: remove #warning for kirkwood CPUs Since commit 96f5c4b the needed functions (get_ticks() and get_tbclk() ) are defined for kirkwood CPUs as well. This warning is then not relevant anymore. Signed-off-by: Valentin Longchamp cc: Holger Brunck cc: Prafulla Wadaskar cc: Albert Aribaud --- diff --git a/post/post.c b/post/post.c index 7c2bdf0780..b3ed2e1b49 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