aboutsummaryrefslogtreecommitdiffstats
path: root/hw
diff options
context:
space:
mode:
authorHervé Poussineau <hpoussin@reactos.org>2011-12-15 22:09:52 +0100
committerAnthony Liguori <aliguori@us.ibm.com>2011-12-20 15:44:30 -0600
commitd1a1be180c0e0299d7b7c1e3e6ed3b7002bdf8e0 (patch)
tree2dafa29c511d6037e57d3407a4c90729dfcdc5ef /hw
parent48a18b3c698295e4d891f34e919615e84e20f027 (diff)
isa: move ISABus structure definition to header file
Signed-off-by: Hervé Poussineau <hpoussin@reactos.org> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw')
-rw-r--r--hw/isa-bus.c5
-rw-r--r--hw/isa.h6
2 files changed, 6 insertions, 5 deletions
diff --git a/hw/isa-bus.c b/hw/isa-bus.c
index dcbb1348f..7c94f0b7b 100644
--- a/hw/isa-bus.c
+++ b/hw/isa-bus.c
@@ -22,11 +22,6 @@
#include "isa.h"
#include "exec-memory.h"
-struct ISABus {
- BusState qbus;
- MemoryRegion *address_space_io;
- qemu_irq *irqs;
-};
static ISABus *isabus;
target_phys_addr_t isa_mem_base = 0;
diff --git a/hw/isa.h b/hw/isa.h
index 1e75f8777..b11a0be27 100644
--- a/hw/isa.h
+++ b/hw/isa.h
@@ -12,6 +12,12 @@
typedef struct ISADevice ISADevice;
typedef struct ISADeviceInfo ISADeviceInfo;
+struct ISABus {
+ BusState qbus;
+ MemoryRegion *address_space_io;
+ qemu_irq *irqs;
+};
+
struct ISADevice {
DeviceState qdev;
uint32_t isairq[2];