diff options
author | Simon Glass <sjg@chromium.org> | 2023-11-12 08:27:44 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-12-13 18:39:05 -0500 |
commit | 1de1a0348755ad5e57790a39059eceeb8e8aba42 (patch) | |
tree | 45caadec97e55cb6189073f78047de19713cb260 /boot/image-board.c | |
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 <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'boot/image-board.c')
-rw-r--r-- | boot/image-board.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/image-board.c b/boot/image-board.c index bb0ca9d7f2..75f6906cd5 100644 --- a/boot/image-board.c +++ b/boot/image-board.c @@ -908,7 +908,7 @@ int image_setup_linux(struct bootm_headers *images) } if (CONFIG_IS_ENABLED(OF_LIBFDT) && of_size) { - ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb); + ret = image_setup_libfdt(images, *of_flat_tree, lmb); if (ret) return ret; } |