Merge patch series "fdt: Correct condition for receiving bloblist"

This series is from Simon Glass <sjg@chromium.org>.

It first corrects the test for checking if a bloblist could have come
from TPL and so we check for a device tree, and then changes the
argument order for board_fdt_blob_setup() to be more inline with our
usual argument ordering.

Link: https://lore.kernel.org/r/20241102174944.412088-1-sjg@chromium.org
(cherry picked from commit b6e1ac89dc)
This commit is contained in:
Tom Rini
2024-12-18 12:34:58 -06:00
committed by Simon Glass
parent 54f6f7134d
commit e7c23a579d

View File

@@ -43,7 +43,6 @@ int board_fdt_blob_setup(void **fdtp)
return -ENXIO;
*fdtp = (void *)fw_dtb_pointer;
return 0;
}