mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-26 06:30:39 +00:00
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 <Peng.Fan@freescale.com> Cc: Tom Rini <trini@konsulko.com> Cc: Simon Glass <sjg@chromium.org> Cc: Bin Meng <bmeng.cn@gmail.com> Cc: Alexey Brodkin <abrodkin@synopsys.com> Cc: "angelo@sysam.it" <angelo@sysam.it> Cc: Daniel Schwierzeck <daniel.schwierzeck@gmail.com> Cc: Stephen Warren <swarren@nvidia.com> Cc: "Andreas Bießmann" <andreas.devel@googlemail.com> Reviewed-by: Simon Glass <sjg@chromium.org> Acked-by: Angelo Dureghello <angelo@sysam.it>
This commit is contained in:
parent
755324c432
commit
7664846bbb
1 changed files with 1 additions and 4 deletions
|
@ -808,10 +808,7 @@ static init_fnc_t init_sequence_f[] = {
|
||||||
#if defined(CONFIG_BOARD_POSTCLK_INIT)
|
#if defined(CONFIG_BOARD_POSTCLK_INIT)
|
||||||
board_postclk_init,
|
board_postclk_init,
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_SYS_FSL_CLK
|
#if defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K)
|
||||||
get_clocks,
|
|
||||||
#endif
|
|
||||||
#ifdef CONFIG_M68K
|
|
||||||
get_clocks,
|
get_clocks,
|
||||||
#endif
|
#endif
|
||||||
env_init, /* initialize environment */
|
env_init, /* initialize environment */
|
||||||
|
|
Loading…
Reference in a new issue