diff options
author | Simon Glass <sjg@chromium.org> | 2017-01-23 13:31:26 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-01-25 17:38:44 -0500 |
commit | a009f36cfef6c4f60ce7f8d70e3ae8dd98537e30 (patch) | |
tree | cebaabd6ba9123f42582862cebb406434583d7ce /arch/powerpc | |
parent | cc664000c2b8a6e33a67e2ff06dfa8d97e6c5f79 (diff) | |
download | u-boot-a009f36cfef6c4f60ce7f8d70e3ae8dd98537e30.zip u-boot-a009f36cfef6c4f60ce7f8d70e3ae8dd98537e30.tar.gz u-boot-a009f36cfef6c4f60ce7f8d70e3ae8dd98537e30.tar.bz2 |
Drop prt_mpc5xxx_clks() in favour of print_cpuinfo()
Rather than having an arch-specific function, use the existing generic
one.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/cpu/mpc5xxx/speed.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/cpu/mpc5xxx/speed.c b/arch/powerpc/cpu/mpc5xxx/speed.c index 30a0a35..b37c4a5 100644 --- a/arch/powerpc/cpu/mpc5xxx/speed.c +++ b/arch/powerpc/cpu/mpc5xxx/speed.c @@ -69,7 +69,7 @@ int get_clocks (void) return (0); } -int prt_mpc5xxx_clks (void) +int print_cpuinfo(void) { char buf1[32], buf2[32], buf3[32]; |