diff options
Diffstat (limited to 'hw')
| -rw-r--r-- | hw/pc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/pc.c b/hw/pc.c index 5664d1b6b8..11b8618aa3 100644 --- a/hw/pc.c +++ b/hw/pc.c @@ -1264,7 +1264,7 @@ static void pc_init1(ram_addr_t ram_size, continue; if (model == NULL) - model = "ne2k_pci"; + model = "e1000"; snprintf(nic_oprom, sizeof(nic_oprom), "pxe-%s.bin", model); oprom_area_size += load_option_rom(nic_oprom, 0xc0000 + oprom_area_size, @@ -1347,7 +1347,7 @@ static void pc_init1(ram_addr_t ram_size, if (!pci_enabled || (nd->model && strcmp(nd->model, "ne2k_isa") == 0)) pc_init_ne2k_isa(nd, isa_irq); else - pci_nic_init(nd, "ne2k_pci", NULL); + pci_nic_init(nd, "e1000", NULL); } piix4_acpi_system_hot_add_init(); |