diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2008-08-15 08:24:42 -0500 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-08-26 23:43:36 +0200 |
commit | 3082d2348c8e13342f5fdd10e9b3f7408062dbf9 (patch) | |
tree | a856dae8fd63dd52dd0270c6ad65d4b72882afc0 /include | |
parent | 396f635b8ff3ccbc38d75d5eda98444c6466810a (diff) | |
download | u-boot-imx-3082d2348c8e13342f5fdd10e9b3f7408062dbf9.zip u-boot-imx-3082d2348c8e13342f5fdd10e9b3f7408062dbf9.tar.gz u-boot-imx-3082d2348c8e13342f5fdd10e9b3f7408062dbf9.tar.bz2 |
fdt: refactor fdt resize code
Move the fdt resizing code out of ppc specific boot code and into
common fdt support code.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/fdt_support.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/fdt_support.h b/include/fdt_support.h index f14ab68..aa0fc58 100644 --- a/include/fdt_support.h +++ b/include/fdt_support.h @@ -69,6 +69,7 @@ void ft_pci_setup(void *blob, bd_t *bd); #endif void set_working_fdt_addr(void *addr); +int fdt_resize(void *blob); #endif /* ifdef CONFIG_OF_LIBFDT */ #endif /* ifndef __FDT_SUPPORT_H */ |