diff options
author | Simon Glass <sjg@chromium.org> | 2017-03-31 08:40:36 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-04-05 16:36:55 -0400 |
commit | e5fb573f6431d7585ef43eb02b67ac1a07f40094 (patch) | |
tree | 27eb55a8cb2672f73849fe23c15aadd3baa978e5 /common/board_f.c | |
parent | 056285fd454362ec1aa5e8bfedff38d9ef7a9fb1 (diff) | |
download | u-boot-e5fb573f6431d7585ef43eb02b67ac1a07f40094.tar.gz |
powerpc: Move setup_board_extra() into a PPC file
We don't need this PPC-specific function in generic code. Move it to
the powerpc directory.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'common/board_f.c')
-rw-r--r-- | common/board_f.c | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/common/board_f.c b/common/board_f.c index e483b4b06c..bafe3aa49c 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -11,7 +11,6 @@ */ #include <common.h> -#include <version.h> #include <console.h> #include <environment.h> #include <dm.h> @@ -607,30 +606,6 @@ static int setup_board_part2(void) } #endif -#ifdef CONFIG_SYS_EXTBDINFO -static int setup_board_extra(void) -{ - bd_t *bd = gd->bd; - - strncpy((char *) bd->bi_s_version, "1.2", sizeof(bd->bi_s_version)); - strncpy((char *) bd->bi_r_version, U_BOOT_VERSION, - sizeof(bd->bi_r_version)); - - bd->bi_procfreq = gd->cpu_clk; /* Processor Speed, In Hz */ - bd->bi_plb_busfreq = gd->bus_clk; -#if defined(CONFIG_405GP) || defined(CONFIG_405EP) || \ - defined(CONFIG_440EP) || defined(CONFIG_440GR) || \ - defined(CONFIG_440EPX) || defined(CONFIG_440GRX) - bd->bi_pci_busfreq = get_PCI_freq(); - bd->bi_opbfreq = get_OPB_freq(); -#elif defined(CONFIG_XILINX_405) - bd->bi_pci_busfreq = get_PCI_freq(); -#endif - - return 0; -} -#endif - #ifdef CONFIG_POST static int init_post(void) { |