board: mpfs_icicle: fix pointer assignment in board_fdt_blob_setup()
authorJamie Gibbons <jamie.gibbons@microchip.com>
Tue, 30 Sep 2025 15:45:34 +0000 (16:45 +0100)
committerTom Rini <trini@konsulko.com>
Tue, 30 Sep 2025 16:10:08 +0000 (10:10 -0600)
commit8dee93cfc50992990ea6f1871b128d464929e1f5
treefe15e48629a62054e3e164b970f0daf14432390b
parent662672dede1ddc77c99dcea03c490603abf05786
board: mpfs_icicle: fix pointer assignment in board_fdt_blob_setup()

Correct the assignment in board_fdt_blob_setup() to use *fdtp instead of
fdtp, ensuring the caller receives the correct FDT address. This
resolves an issue where the device tree pointer was not properly set due
to assigning to the local parameter rather than the dereferenced
pointer.

Fixes: 7c16ebba1ed ("board: mpfs_icicle: implement board_fdt_blob_setup()/board_fit_config_name_match()")
Signed-off-by: Jamie Gibbons <jamie.gibbons@microchip.com>
Reviewed-by: Conor Dooley <conor.dooley@microchip.com>
board/microchip/mpfs_icicle/mpfs_icicle.c