board: qemu: riscv: Remove duplicated board_fdt_blob_setup
authorYao Zi <ziyao@disroot.org>
Fri, 7 Mar 2025 13:13:42 +0000 (13:13 +0000)
committerLeo Yu-Chi Liang <ycliang@andestech.com>
Fri, 25 Apr 2025 08:30:54 +0000 (16:30 +0800)
The default version should work for RISC-V QEMU.

Signed-off-by: Yao Zi <ziyao@disroot.org>
Reviewed-by: Leo Yu-Chi Liang <ycliang@andestech.com>
board/emulation/qemu-riscv/qemu-riscv.c

index a90222e..70190eb 100644 (file)
@@ -63,11 +63,3 @@ int board_fit_config_name_match(const char *name)
        return 0;
 }
 #endif
-
-int board_fdt_blob_setup(void **fdtp)
-{
-       /* Stored the DTB address there during our init */
-       *fdtp = (void *)(ulong)gd->arch.firmware_fdt_addr;
-
-       return 0;
-}