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 /arch | |
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 'arch')
-rw-r--r-- | arch/powerpc/cpu/mpc8xx/speed.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/cpu/mpc8xx/speed.c b/arch/powerpc/cpu/mpc8xx/speed.c index 42442b8..613209c 100644 --- a/arch/powerpc/cpu/mpc8xx/speed.c +++ b/arch/powerpc/cpu/mpc8xx/speed.c @@ -243,7 +243,7 @@ static long init_pll_866 (long clk); * contains invalid value). * This functions requires an MPC866 or newer series CPU. */ -int get_clocks_866 (void) +int get_clocks(void) { volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR; char tmp[64]; |