mirror of https://github.com/ipxe/ipxe.git
Fields in struct pci_device slightly changed.
parent
84f43ea9cf
commit
67c9385577
|
@ -665,13 +665,11 @@ static int davicom_probe ( struct nic *nic, struct pci_device *pci ) {
|
||||||
if (pci->ioaddr == 0)
|
if (pci->ioaddr == 0)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
vendor = pci->vendor;
|
vendor = pci->vendor_id;
|
||||||
dev_id = pci->dev_id;
|
dev_id = pci->device_id;
|
||||||
ioaddr = pci->ioaddr;
|
ioaddr = pci->ioaddr;
|
||||||
|
|
||||||
nic->irqno = 0;
|
|
||||||
pci_fill_nic ( nic, pci );
|
pci_fill_nic ( nic, pci );
|
||||||
nic->ioaddr = pci->ioaddr;
|
|
||||||
|
|
||||||
/* wakeup chip */
|
/* wakeup chip */
|
||||||
pci_write_config_dword(pci, 0x40, 0x00000000);
|
pci_write_config_dword(pci, 0x40, 0x00000000);
|
||||||
|
|
Loading…
Reference in New Issue