From: Bin Meng Date: Wed, 9 Dec 2015 01:31:40 +0000 (-0800) Subject: common: Remove timer_init() call for x86 X-Git-Tag: v2016.01-rc3~43 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2317cf0970318a7f992acf968540dfcd6ff90f7b;p=platform%2Fkernel%2Fu-boot.git common: Remove timer_init() call for x86 With driver model timer support, there should not be an explict call to timer_init(). Remove this call for x86. Signed-off-by: Bin Meng Acked-by: Simon Glass --- diff --git a/common/board_f.c b/common/board_f.c index eac7c5e..b407354 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -825,7 +825,7 @@ static init_fnc_t init_sequence_f[] = { /* TODO: can we rename this to timer_init()? */ init_timebase, #endif -#if defined(CONFIG_X86) || defined(CONFIG_ARM) || defined(CONFIG_MIPS) || \ +#if defined(CONFIG_ARM) || defined(CONFIG_MIPS) || \ defined(CONFIG_BLACKFIN) || defined(CONFIG_NDS32) || \ defined(CONFIG_SPARC) timer_init, /* initialize timer */