diff options
author | Simon Glass <sjg@chromium.org> | 2014-07-30 03:59:02 -0600 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-08-09 11:17:03 -0400 |
commit | 5bf58ccc8ebd5270f64a20c4c54c98a96acbd7ed (patch) | |
tree | 3da0e9d970dfd6f343be9249a96e4ac2f35e3b9f /include/fdt_support.h | |
parent | 0b6cc51e988862eb6c521b45ae09cc97ce709f42 (diff) |
fdt: Rename fdt_resize() to fdt_shrink_to_minimum()
Since libfdt now has an fdt_resize() function, we need to rename the
U-Boot one.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/fdt_support.h')
-rw-r--r-- | include/fdt_support.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fdt_support.h b/include/fdt_support.h index fd44d7e2f64..1bda686a0b9 100644 --- a/include/fdt_support.h +++ b/include/fdt_support.h @@ -76,7 +76,7 @@ void ft_cpu_setup(void *blob, bd_t *bd); void ft_pci_setup(void *blob, bd_t *bd); void set_working_fdt_addr(void *addr); -int fdt_resize(void *blob); +int fdt_shrink_to_minimum(void *blob); int fdt_increase_size(void *fdt, int add_len); int fdt_fixup_nor_flash_size(void *blob); |