diff options
author | Simon Glass <sjg@chromium.org> | 2017-03-28 10:27:20 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-04-05 13:52:50 -0400 |
commit | d593c61672eb0fe21380750b3b1a816cea9f86bd (patch) | |
tree | 7fa27eff4766f35eab3491f719f6a1c7ad46da4b /common | |
parent | c252c06857b8ed73284ea526f5b1260f32ea166a (diff) | |
download | u-boot-d593c61672eb0fe21380750b3b1a816cea9f86bd.zip u-boot-d593c61672eb0fe21380750b3b1a816cea9f86bd.tar.gz u-boot-d593c61672eb0fe21380750b3b1a816cea9f86bd.tar.bz2 |
board_f: powerpc: Rename get_clocks_866() to get_clocks()
We really don't need to have a name like this in the generic init
sequence. Use the generic get_clocks() name so that we can merge these
two at some point.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: York Sun <york.sun@nxp.com>
Reviewed-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'common')
-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 326faef..84ffc90 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -831,7 +831,7 @@ static const init_fnc_t init_sequence_f[] = { /* TODO: can any of this go into arch_cpu_init()? */ #if defined(CONFIG_8xx_CPUCLK_DEFAULT) /* get CPU and bus clocks according to the environment variable */ - get_clocks_866, + get_clocks, /* adjust sdram refresh rate according to the new clock */ sdram_adjust_866, init_timebase, |