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 /common/Kconfig | |
parent | cc664000c2b8a6e33a67e2ff06dfa8d97e6c5f79 (diff) | |
download | u-boot-a009f36cfef6c4f60ce7f8d70e3ae8dd98537e30.tar.gz |
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 'common/Kconfig')
-rw-r--r-- | common/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/Kconfig b/common/Kconfig index 7273c3faca..9067d1e277 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -385,7 +385,7 @@ config BOARD_LATE_INIT config DISPLAY_CPUINFO bool "Display information about the CPU during start up" - default y if ARM || BLACKFIN || NIOS2 || X86 || XTENSA + default y if ARM || BLACKFIN || NIOS2 || X86 || XTENSA || MPC5xxx help Display information about the CPU that U-Boot is running on when U-Boot starts up. The function print_cpuinfo() is called |