diff options
author | Richard Henderson <rth@twiddle.net> | 2011-08-10 15:28:11 -0700 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2011-09-25 14:58:35 +0300 |
commit | c2d0d01202e07f87bf17ec9a9f43232c982aa1c2 (patch) | |
tree | 0bee5a325c0abea6c0b97aed121d5bfa0641bbf9 /hw/pc_piix.c | |
parent | e11d64390ba076d8a293e422dad3027f9adb9430 (diff) |
isa: Pass i/o address space to isa_bus_new
Not used yet, but at least we're provided with the correct region.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'hw/pc_piix.c')
-rw-r--r-- | hw/pc_piix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/pc_piix.c b/hw/pc_piix.c index 0144534e82..1056cc79cc 100644 --- a/hw/pc_piix.c +++ b/hw/pc_piix.c @@ -156,7 +156,7 @@ static void pc_init1(MemoryRegion *system_memory, } else { pci_bus = NULL; i440fx_state = NULL; - isa_bus_new(NULL); + isa_bus_new(NULL, system_io); no_hpet = 1; } isa_bus_irqs(isa_irq); |