diff options
| author | Simon Glass <[email protected]> | 2023-11-12 08:27:44 -0700 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-12-13 18:39:05 -0500 |
| commit | 1de1a0348755ad5e57790a39059eceeb8e8aba42 (patch) | |
| tree | 45caadec97e55cb6189073f78047de19713cb260 /cmd | |
| parent | c659ac7cca151be29712f37fc77dd18fb4ab96c5 (diff) | |
boot: Drop size parameter from image_setup_libfdt()
The of_size parameter is not used, so remove it.
Signed-off-by: Simon Glass <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/bootefi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/bootefi.c b/cmd/bootefi.c index 4d74969ad62..2ed29ad6bb8 100644 --- a/cmd/bootefi.c +++ b/cmd/bootefi.c @@ -309,7 +309,7 @@ efi_status_t efi_install_fdt(void *fdt) return EFI_OUT_OF_RESOURCES; } - if (image_setup_libfdt(&img, fdt, 0, NULL)) { + if (image_setup_libfdt(&img, fdt, NULL)) { log_err("ERROR: failed to process device tree\n"); return EFI_LOAD_ERROR; } |
