diff options
author | Juan Quintela <quintela@redhat.com> | 2009-08-28 15:28:22 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-09-04 09:37:24 -0500 |
commit | 867a0d7dd02c5ae00cb4f6f8cd1c48be7464326f (patch) | |
tree | 2219b47c6a5ef2bbc2ed564d301f9b0299d95d1f /hw | |
parent | fd83e9b9dc7adac8244c613e0a51baa4610bb46d (diff) |
Save irq_state into PCII440FXState
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/piix_pci.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/piix_pci.c b/hw/piix_pci.c index 92884d94d7..5f3467868b 100644 --- a/hw/piix_pci.c +++ b/hw/piix_pci.c @@ -46,6 +46,7 @@ struct PCII440FXState { PCIDevice dev; target_phys_addr_t isa_page_descs[384 / 4]; uint8_t smm_enabled; + PIIX3IrqState *irq_state; }; static void i440fx_addr_writel(void* opaque, uint32_t addr, uint32_t val) @@ -236,6 +237,7 @@ PCIBus *i440fx_init(PCII440FXState **pi440fx_state, int *piix3_devfn, qemu_irq * d = pci_create_simple(b, 0, "i440FX"); *pi440fx_state = DO_UPCAST(PCII440FXState, dev, d); + (*pi440fx_state)->irq_state = irq_state; irq_state->piix3 = DO_UPCAST(PIIX3State, dev, pci_create_simple(b, -1, "PIIX3")); |