summaryrefslogtreecommitdiff
path: root/hw/pci.c
diff options
context:
space:
mode:
authorths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2007-04-02 12:35:34 +0000
committerths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2007-04-02 12:35:34 +0000
commit663e8e5164e0f9ad38e12d91de89d553d89060d2 (patch)
treedfa73b0393337a9a379218232f4f6cf1569505ea /hw/pci.c
parentf0c757e431fa48248a411dc07dea98ce9be6a537 (diff)
downloadqemu-663e8e5164e0f9ad38e12d91de89d553d89060d2.tar.gz
Eepro100 emulation, by Stefan Weil.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2584 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/pci.c')
-rw-r--r--hw/pci.c6
1 files changed, 6 insertions, 0 deletions
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) {