From: Peter Maydell Date: Fri, 30 Jul 2021 10:59:44 +0000 (+0100) Subject: arch_init.h: Add QEMU_ARCH_HEXAGON X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=cc68292e86f594142ef3770f72adccb103220716;p=qemu.git arch_init.h: Add QEMU_ARCH_HEXAGON When Hexagon was added we forgot to add it to the QEMU_ARCH_* enumeration. This doesn't cause a visible effect because at the moment Hexagon is linux-user only and the QEMU_ARCH_* constants are only used in softmmu, but we might as well add it in, since it's the only architecture currently missing from the list. Signed-off-by: Peter Maydell Reviewed-by: Philippe Mathieu-Daudé Reviewed-by: Richard Henderson Reviewed-by: Taylor Simpson Message-id: 20210730105947.28215-6-peter.maydell@linaro.org --- diff --git a/include/sysemu/arch_init.h b/include/sysemu/arch_init.h index 57caad1c67..60270c5ad1 100644 --- a/include/sysemu/arch_init.h +++ b/include/sysemu/arch_init.h @@ -23,6 +23,7 @@ enum { QEMU_ARCH_RISCV = (1 << 19), QEMU_ARCH_RX = (1 << 20), QEMU_ARCH_AVR = (1 << 21), + QEMU_ARCH_HEXAGON = (1 << 22), QEMU_ARCH_NONE = (1 << 31), };