Commit bd3e2c4e696cc03d8de335ef5f6f3f22ac82132a
1 parent
615e2dba
Allow use of PCI NICs on PowerPC PreP platform.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3423 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
1 additions
and
6 deletions
hw/ppc_prep.c
... | ... | @@ -636,13 +636,8 @@ static void ppc_prep_init (int ram_size, int vga_ram_size, int boot_device, |
636 | 636 | if (nd_table[0].model == NULL |
637 | 637 | || strcmp(nd_table[0].model, "ne2k_isa") == 0) { |
638 | 638 | isa_ne2000_init(ne2000_io[i], i8259[ne2000_irq[i]], &nd_table[i]); |
639 | - } else if (strcmp(nd_table[0].model, "?") == 0) { | |
640 | - fprintf(stderr, "qemu: Supported NICs: ne2k_isa\n"); | |
641 | - exit (1); | |
642 | 639 | } else { |
643 | - /* Why ? */ | |
644 | - cpu_abort(env, "qemu: Unsupported NIC: %s\n", nd_table[0].model); | |
645 | - exit (1); | |
640 | + pci_nic_init(pci_bus, &nd_table[i], -1); | |
646 | 641 | } |
647 | 642 | } |
648 | 643 | ... | ... |