From: Lei Xia Date: Fri, 11 Nov 2011 17:00:40 +0000 (-0600) Subject: set the default base port of ne2000 to -1 to make it able to coexist with other netwo... X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=commitdiff_plain;h=b68f6e946d902b7188cb875b3a5dde85424ecdc4;hp=321c3c92bff628e6b5fcab07f3105f77fbeda1cb;p=palacios-OLD.git set the default base port of ne2000 to -1 to make it able to coexist with other network devices --- diff --git a/palacios/src/devices/ne2k.c b/palacios/src/devices/ne2k.c index 484355d..bf80bf5 100644 --- a/palacios/src/devices/ne2k.c +++ b/palacios/src/devices/ne2k.c @@ -1112,7 +1112,7 @@ static int register_dev(struct ne2k_state * nic_state) } bars[0].type = PCI_BAR_IO; - bars[0].default_base_port = NIC_REG_BASE_PORT; + bars[0].default_base_port = -1; // NIC_REG_BASE_PORT; bars[0].num_ports = 256; bars[0].io_read = ne2k_pci_read;