diff options
author | Kim Phillips <kim.phillips@freescale.com> | 2008-03-28 17:37:49 -0500 |
---|---|---|
committer | Gerald Van Baren <vanbaren@cideas.com> | 2008-04-01 19:46:44 -0400 |
commit | 6fe2946f198481254a6ee9600d7456b8316a4083 (patch) | |
tree | 718919a1bb2a41942600eed7496abdc25fcf31de /lib_ppc/bootm.c | |
parent | 3596d55eb22703d3f4f1b839fe4b000fabe081b3 (diff) | |
download | u-boot-imx-6fe2946f198481254a6ee9600d7456b8316a4083.zip u-boot-imx-6fe2946f198481254a6ee9600d7456b8316a4083.tar.gz u-boot-imx-6fe2946f198481254a6ee9600d7456b8316a4083.tar.bz2 |
remove remaining CONFIG_OF_HAS_{UBOOT_ENV,BD_T} code
finish off what commit 43ddd9c820fec44816188f53346b464e20b3142d,
"Remove deprecated CONFIG_OF_HAS_UBOOT_ENV and CONFIG_OF_HAS_BD_T"
started.
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Diffstat (limited to 'lib_ppc/bootm.c')
-rw-r--r-- | lib_ppc/bootm.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/lib_ppc/bootm.c b/lib_ppc/bootm.c index b893146..2901607 100644 --- a/lib_ppc/bootm.c +++ b/lib_ppc/bootm.c @@ -184,18 +184,6 @@ do_bootm_linux(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[], fdt_error ("/chosen node create failed"); goto error; } -#ifdef CONFIG_OF_HAS_UBOOT_ENV - if (fdt_env(of_flat_tree) < 0) { - fdt_error ("/u-boot-env node create failed"); - goto error; - } -#endif -#ifdef CONFIG_OF_HAS_BD_T - if (fdt_bd_t(of_flat_tree) < 0) { - fdt_error ("/bd_t node create failed"); - goto error; - } -#endif #ifdef CONFIG_OF_BOARD_SETUP /* Call the board-specific fixup routine */ ft_board_setup(of_flat_tree, gd->bd); |