diff options
author | Gong Qianyu <Qianyu.Gong@freescale.com> | 2015-09-09 16:44:16 +0800 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-10-24 13:50:38 -0400 |
commit | 677f970bc62a661690b3431543d5a5d5e682ba70 (patch) | |
tree | 5a3194d420f442c5e58be7e99457245f853bba66 /common/board_f.c | |
parent | 09f3ca3dd53b671b009ddc4e1dad669c280094f0 (diff) | |
download | u-boot-677f970bc62a661690b3431543d5a5d5e682ba70.tar.gz |
common/board_f.c: modify the macro to use get_clocks() more common
get_clocks() should not be limited by ESDHC.
Signed-off-by: Gong Qianyu <Qianyu.Gong@freescale.com>
Diffstat (limited to 'common/board_f.c')
-rw-r--r-- | common/board_f.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/board_f.c b/common/board_f.c index 62570ab6d8..486e828fe8 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -806,7 +806,7 @@ static init_fnc_t init_sequence_f[] = { #if defined(CONFIG_BOARD_POSTCLK_INIT) board_postclk_init, #endif -#ifdef CONFIG_FSL_ESDHC +#ifdef CONFIG_FSL_CLK get_clocks, #endif #ifdef CONFIG_M68K |