mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
boot: Drop size parameter from image_setup_libfdt()
The of_size parameter is not used, so remove it. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
c659ac7cca
commit
1de1a03487
6 changed files with 8 additions and 8 deletions
|
@ -173,7 +173,7 @@ efi_dt_fixup(struct efi_dt_fixup_protocol *this, void *dtb,
|
|||
}
|
||||
|
||||
fdt_set_totalsize(dtb, *buffer_size);
|
||||
if (image_setup_libfdt(&img, dtb, 0, NULL)) {
|
||||
if (image_setup_libfdt(&img, dtb, NULL)) {
|
||||
log_err("failed to process device tree\n");
|
||||
ret = EFI_INVALID_PARAMETER;
|
||||
goto out;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue