diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2009-09-10 11:43:33 +0200 |
---|---|---|
committer | malc <av1474@comtv.ru> | 2009-09-10 19:48:01 +0400 |
commit | 9453c5bc2634fdbdd05450034c21a58806d366a4 (patch) | |
tree | a0e3f729626cd1021d9c2086e47f4730ae6fd165 /hw/ppc_prep.c | |
parent | 9df34396d5066678d13155eea2060f73a36b98a9 (diff) |
qdev/isa: convert ne2000
Also split the isa bits into a separate source file, so we don't drag in
a dependency for isa-bus.o for machines which want ne2k_pci only.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/ppc_prep.c')
-rw-r--r-- | hw/ppc_prep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ppc_prep.c b/hw/ppc_prep.c index 927d4040ab..cde235ae26 100644 --- a/hw/ppc_prep.c +++ b/hw/ppc_prep.c @@ -691,7 +691,7 @@ static void ppc_prep_init (ram_addr_t ram_size, nd_table[i].model = "ne2k_isa"; } if (strcmp(nd_table[i].model, "ne2k_isa") == 0) { - isa_ne2000_init(ne2000_io[i], i8259[ne2000_irq[i]], &nd_table[i]); + isa_ne2000_init(ne2000_io[i], ne2000_irq[i], &nd_table[i]); } else { pci_nic_init(&nd_table[i], "ne2k_pci", NULL); } |