From: Lei Xia Date: Fri, 11 Nov 2011 17:03:07 +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?p=palacios.git;a=commitdiff_plain;h=e895aea7212e8cd9e1ba9555f3313fbf90f83d7f 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 d4e8852..b4796f7 100644 --- a/palacios/src/devices/ne2k.c +++ b/palacios/src/devices/ne2k.c @@ -1115,7 +1115,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; bars[0].num_ports = 256; bars[0].io_read = ne2k_pci_read;