diff options
author | Tom Rini <trini@konsulko.com> | 2025-04-25 13:13:17 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-04-25 13:13:17 -0600 |
commit | 5a0a93a768487e55ebe50a34cc90d751bf99cc56 (patch) | |
tree | 7d8fdcb585e32d300183796c67c467cfa6c897ce /board/emulation/qemu-riscv/qemu-riscv.c | |
parent | 7a9c9b5655646c229e4300c24b0b85b51308795e (diff) | |
parent | 5ac699efe94f24df561d33e420d3c73f5fb797e8 (diff) |
Merge branch 'master' of https://source.denx.de/u-boot/custodians/u-boot-riscv
CI: https://source.denx.de/u-boot/custodians/u-boot-riscv/-/pipelines/25940
- riscv: lib: Simplify FDT retrieving process
- board: k1: pinctrl: Add pinctrl support for bananapi-f3
- binman: riscv: Fix binman_sym functionality
- board: starfive: visionfive2: Reorder board detection logic
- board: starfive: Add DeepComputing FML13V01 support
Diffstat (limited to 'board/emulation/qemu-riscv/qemu-riscv.c')
-rw-r--r-- | board/emulation/qemu-riscv/qemu-riscv.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/board/emulation/qemu-riscv/qemu-riscv.c b/board/emulation/qemu-riscv/qemu-riscv.c index a90222ea6a4..70190ebe8fc 100644 --- a/board/emulation/qemu-riscv/qemu-riscv.c +++ b/board/emulation/qemu-riscv/qemu-riscv.c @@ -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; -} |