62fffaa6c9
We added a stub for the arch_type global in commit5964ed56d9
so that we could compile blockdev.c into the tools. However, in commit9db1d3a2be
we removed the only use of arch_type from blockdev.c. The stub is therefore no longer needed, and we can delete it again, together with the QEMU_ARCH_NONE value that only the stub was using. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20210730105947.28215-9-peter.maydell@linaro.org
32 lines
776 B
C
32 lines
776 B
C
#ifndef QEMU_ARCH_INIT_H
|
|
#define QEMU_ARCH_INIT_H
|
|
|
|
|
|
enum {
|
|
QEMU_ARCH_ALL = -1,
|
|
QEMU_ARCH_ALPHA = (1 << 0),
|
|
QEMU_ARCH_ARM = (1 << 1),
|
|
QEMU_ARCH_CRIS = (1 << 2),
|
|
QEMU_ARCH_I386 = (1 << 3),
|
|
QEMU_ARCH_M68K = (1 << 4),
|
|
QEMU_ARCH_MICROBLAZE = (1 << 6),
|
|
QEMU_ARCH_MIPS = (1 << 7),
|
|
QEMU_ARCH_PPC = (1 << 8),
|
|
QEMU_ARCH_S390X = (1 << 9),
|
|
QEMU_ARCH_SH4 = (1 << 10),
|
|
QEMU_ARCH_SPARC = (1 << 11),
|
|
QEMU_ARCH_XTENSA = (1 << 12),
|
|
QEMU_ARCH_OPENRISC = (1 << 13),
|
|
QEMU_ARCH_TRICORE = (1 << 16),
|
|
QEMU_ARCH_NIOS2 = (1 << 17),
|
|
QEMU_ARCH_HPPA = (1 << 18),
|
|
QEMU_ARCH_RISCV = (1 << 19),
|
|
QEMU_ARCH_RX = (1 << 20),
|
|
QEMU_ARCH_AVR = (1 << 21),
|
|
QEMU_ARCH_HEXAGON = (1 << 22),
|
|
};
|
|
|
|
extern const uint32_t arch_type;
|
|
|
|
#endif
|