From: Peng Fan Date: Fri, 30 Oct 2015 09:30:02 +0000 (+0800) Subject: common: Simplify get_clocks() #ifdef X-Git-Url: http://git.ipfire.org/?p=people%2Fms%2Fu-boot.git;a=commitdiff_plain;h=7664846bbbccee0d5fa6b5f9d4a8ad0f07ff29d7;ds=sidebyside common: Simplify get_clocks() #ifdef get_clocks is wrapped by CONFIG_FSL_CLK and CONFIG_M68K in seperate piece code. They can be merged into one snippet. Signed-off-by: Peng Fan Cc: Tom Rini Cc: Simon Glass Cc: Bin Meng Cc: Alexey Brodkin Cc: "angelo@sysam.it" Cc: Daniel Schwierzeck Cc: Stephen Warren Cc: "Andreas Bießmann" Reviewed-by: Simon Glass Acked-by: Angelo Dureghello --- diff --git a/common/board_f.c b/common/board_f.c index 725eb18427..ed513058ee 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -808,10 +808,7 @@ static init_fnc_t init_sequence_f[] = { #if defined(CONFIG_BOARD_POSTCLK_INIT) board_postclk_init, #endif -#ifdef CONFIG_SYS_FSL_CLK - get_clocks, -#endif -#ifdef CONFIG_M68K +#if defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K) get_clocks, #endif env_init, /* initialize environment */