From 663e8e5164e0f9ad38e12d91de89d553d89060d2 Mon Sep 17 00:00:00 2001 From: ths Date: Mon, 2 Apr 2007 12:35:34 +0000 Subject: Eepro100 emulation, by Stefan Weil. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2584 c046a42c-6fe2-441c-8c8c-71466251a162 --- hw/pci.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'hw/pci.c') diff --git a/hw/pci.c b/hw/pci.c index eeaef9e83d..4d9eb03299 100644 --- a/hw/pci.c +++ b/hw/pci.c @@ -548,6 +548,12 @@ void pci_nic_init(PCIBus *bus, NICInfo *nd, int devfn) { if (strcmp(nd->model, "ne2k_pci") == 0) { pci_ne2000_init(bus, nd, devfn); + } else if (strcmp(nd->model, "i82551") == 0) { + pci_i82551_init(bus, nd, devfn); + } else if (strcmp(nd->model, "i82557b") == 0) { + pci_i82557b_init(bus, nd, devfn); + } else if (strcmp(nd->model, "i82559er") == 0) { + pci_i82559er_init(bus, nd, devfn); } else if (strcmp(nd->model, "rtl8139") == 0) { pci_rtl8139_init(bus, nd, devfn); } else if (strcmp(nd->model, "pcnet") == 0) { -- cgit v1.2.3