diff options
author | Marcel Ziswiler <marcel@ziswiler.com> | 2009-10-01 23:55:17 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-11-22 23:16:28 +0100 |
commit | cada315100c88894b85972a91309a6f2413966b6 (patch) | |
tree | 2f4e2ad816488a3162ba43302fc424e336d72561 /board/ids8247/ids8247.c | |
parent | f2cea405f83da46b72098ea874fb3eefe185d312 (diff) | |
download | u-boot-cada315100c88894b85972a91309a6f2413966b6.tar.gz u-boot-cada315100c88894b85972a91309a6f2413966b6.tar.xz u-boot-cada315100c88894b85972a91309a6f2413966b6.zip |
mpc8260: move FDT memory node fixup into common CPU code.
Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
Tested-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'board/ids8247/ids8247.c')
-rw-r--r-- | board/ids8247/ids8247.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/board/ids8247/ids8247.c b/board/ids8247/ids8247.c index 79fe9da5ba..d621833cc1 100644 --- a/board/ids8247/ids8247.c +++ b/board/ids8247/ids8247.c @@ -400,24 +400,8 @@ int board_nand_init(struct nand_chip *nand) #endif /* CONFIG_CMD_NAND */ #if defined(CONFIG_OF_BOARD_SETUP) && defined(CONFIG_OF_LIBFDT) -/* - * update "memory" property in the blob - */ -void ft_blob_update(void *blob, bd_t *bd) -{ - int ret; - - ret = fdt_fixup_memory(blob, (u64)bd->bi_memstart, (u64)bd->bi_memsize); - - if (ret < 0) { - printf("ft_blob_update(): cannot set /memory/reg " - "property err:%s\n", fdt_strerror(ret)); - } -} - void ft_board_setup(void *blob, bd_t *bd) { ft_cpu_setup( blob, bd); - ft_blob_update(blob, bd); } #endif /* defined(CONFIG_OF_BOARD_SETUP) && defined(CONFIG_OF_LIBFDT) */ |