diff options
| author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-04-18 17:07:03 +0200 |
|---|---|---|
| committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-04-25 12:48:12 +0200 |
| commit | 206e562c5aa5db55362bff0e88ba220250858f35 (patch) | |
| tree | b46e713f226d14efa553605360d41c0b6f4d9d1f | |
| parent | 159fb790e48992f74644b0b0876615e8caacbfe4 (diff) | |
| download | focaccia-qemu-206e562c5aa5db55362bff0e88ba220250858f35.tar.gz focaccia-qemu-206e562c5aa5db55362bff0e88ba220250858f35.zip | |
hw/xtensa: Include missing 'exec/cpu-common.h' in 'bootparam.h'
cpu_physical_memory_write() is declared in "exec/cpu-common.h". Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Anton Johansson <anjo@rev.ng> Message-Id: <20240418192525.97451-21-philmd@linaro.org>
Diffstat (limited to '')
| -rw-r--r-- | hw/xtensa/bootparam.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/xtensa/bootparam.h b/hw/xtensa/bootparam.h index ade7891ec5..f57ff850bc 100644 --- a/hw/xtensa/bootparam.h +++ b/hw/xtensa/bootparam.h @@ -1,6 +1,8 @@ #ifndef HW_XTENSA_BOOTPARAM_H #define HW_XTENSA_BOOTPARAM_H +#include "exec/cpu-common.h" + #define BP_TAG_COMMAND_LINE 0x1001 /* command line (0-terminated string)*/ #define BP_TAG_INITRD 0x1002 /* ramdisk addr and size (bp_meminfo) */ #define BP_TAG_MEMORY 0x1003 /* memory addr and size (bp_meminfo) */ |