diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2021-07-30 11:59:45 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2021-08-26 17:02:00 +0100 |
commit | 3669282cde01809edac8c91f61da50da2a83b067 (patch) | |
tree | 2baac12574d24547187695c21ba17442e9187dcc /include | |
parent | cc68292e86f594142ef3770f72adccb103220716 (diff) | |
download | qemu-3669282cde01809edac8c91f61da50da2a83b067.zip qemu-3669282cde01809edac8c91f61da50da2a83b067.tar.gz qemu-3669282cde01809edac8c91f61da50da2a83b067.tar.bz2 |
arch_init.h: Move QEMU_ARCH_VIRTIO_* to qdev-monitor.c
The QEMU_ARCH_VIRTIO_* defines are used only in one file,
qdev-monitor.c. Move them to that file.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Message-id: 20210730105947.28215-7-peter.maydell@linaro.org
Diffstat (limited to 'include')
-rw-r--r-- | include/sysemu/arch_init.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/include/sysemu/arch_init.h b/include/sysemu/arch_init.h index 60270c5..e778939 100644 --- a/include/sysemu/arch_init.h +++ b/include/sysemu/arch_init.h @@ -30,13 +30,4 @@ enum { extern const uint32_t arch_type; -/* default virtio transport per architecture */ -#define QEMU_ARCH_VIRTIO_PCI (QEMU_ARCH_ALPHA | QEMU_ARCH_ARM | \ - QEMU_ARCH_HPPA | QEMU_ARCH_I386 | \ - QEMU_ARCH_MIPS | QEMU_ARCH_PPC | \ - QEMU_ARCH_RISCV | QEMU_ARCH_SH4 | \ - QEMU_ARCH_SPARC | QEMU_ARCH_XTENSA) -#define QEMU_ARCH_VIRTIO_CCW (QEMU_ARCH_S390X) -#define QEMU_ARCH_VIRTIO_MMIO (QEMU_ARCH_M68K) - #endif |