mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 16:52:14 +02:00
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>
This commit is contained in:
@@ -479,7 +479,7 @@ int image_setup_libfdt(bootm_headers_t *images, void *blob,
|
||||
lmb_free(lmb, (phys_addr_t)(u32)(uintptr_t)blob,
|
||||
(phys_size_t)fdt_totalsize(blob));
|
||||
|
||||
ret = fdt_resize(blob);
|
||||
ret = fdt_shrink_to_minimum(blob);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
of_size = ret;
|
||||
|
Reference in New Issue
Block a user