diff options
author | Mihai Carabas | 2021-01-27 15:59:27 +0100 |
---|---|---|
committer | Peter Maydell | 2021-01-29 11:47:28 +0100 |
commit | 677726ef1ebc567e4f5081f68623debc68f958d9 (patch) | |
tree | 2dc3e9c9d2963d99f0906600b5bc7c6c56ba507b /hw/i386 | |
parent | hvf: Add hypervisor entitlement to output binaries (diff) | |
download | qemu-677726ef1ebc567e4f5081f68623debc68f958d9.tar.gz qemu-677726ef1ebc567e4f5081f68623debc68f958d9.tar.xz qemu-677726ef1ebc567e4f5081f68623debc68f958d9.zip |
hw/misc/pvpanic: split-out generic and bus dependent code
To ease the PCI device addition in next patches, split the code as follows:
- generic code (read/write/setup) is being kept in pvpanic.c
- ISA dependent code moved to pvpanic-isa.c
Also, rename:
- ISA_PVPANIC_DEVICE -> PVPANIC_ISA_DEVICE.
- TYPE_PVPANIC -> TYPE_PVPANIC_ISA.
- MemoryRegion io -> mr.
- pvpanic_ioport_* in pvpanic_*.
Update the build system with the new files and config structure.
Signed-off-by: Mihai Carabas <mihai.carabas@oracle.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/i386')
-rw-r--r-- | hw/i386/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/i386/Kconfig b/hw/i386/Kconfig index eea059ffef..7f91f30877 100644 --- a/hw/i386/Kconfig +++ b/hw/i386/Kconfig @@ -14,7 +14,7 @@ config PC imply ISA_DEBUG imply PARALLEL imply PCI_DEVICES - imply PVPANIC + imply PVPANIC_ISA imply QXL imply SEV imply SGA |