From 70e2aaf380ef873901684027ef1082ebd4608785 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Tue, 28 Mar 2017 10:27:24 -0600 Subject: board_f: powerpc: Use timer_init() instead of init_timebase() There is no good reason to use a different name on PowerPC. Change it to timer_init() like the others. Signed-off-by: Simon Glass Reviewed-by: York Sun Reviewed-by: Stefan Roese --- common/board_f.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'common') diff --git a/common/board_f.c b/common/board_f.c index a4b5df7..eb32fca 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -831,10 +831,8 @@ static const init_fnc_t init_sequence_f[] = { #ifdef CONFIG_PPC /* get CPU and bus clocks according to the environment variable */ get_clocks, /* get CPU and bus clocks (etc.) */ - /* TODO: can we rename this to timer_init()? */ - init_timebase, #endif -#if defined(CONFIG_ARM) || defined(CONFIG_MIPS) || \ +#if defined(CONFIG_ARM) || defined(CONFIG_MIPS) || defined(CONFIG_PPC) || \ defined(CONFIG_NDS32) || defined(CONFIG_SH) timer_init, /* initialize timer */ #endif -- cgit v1.1