diff options
author | Alex Bennée | 2021-03-03 18:36:37 +0100 |
---|---|---|
committer | Alex Bennée | 2021-03-10 16:34:11 +0100 |
commit | c65d7080d82e932baae97b0ed4cb39ff22635be2 (patch) | |
tree | 29d5617e1f29a72d02de851f64e9fd57500d3898 /include | |
parent | hw/board: promote fdt from ARM VirtMachineState to MachineState (diff) | |
download | qemu-c65d7080d82e932baae97b0ed4cb39ff22635be2.tar.gz qemu-c65d7080d82e932baae97b0ed4cb39ff22635be2.tar.xz qemu-c65d7080d82e932baae97b0ed4cb39ff22635be2.zip |
hw/riscv: migrate fdt field to generic MachineState
This is a mechanical change to make the fdt available through
MachineState.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20210303173642.3805-3-alex.bennee@linaro.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/hw/riscv/virt.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/hw/riscv/virt.h b/include/hw/riscv/virt.h index 84b7a3848f..632da52018 100644 --- a/include/hw/riscv/virt.h +++ b/include/hw/riscv/virt.h @@ -41,7 +41,6 @@ struct RISCVVirtState { DeviceState *plic[VIRT_SOCKETS_MAX]; PFlashCFI01 *flash[2]; - void *fdt; int fdt_size; }; |