mirror of
https://github.com/ipxe/ipxe
synced 2025-12-16 17:41:18 +03:00
Auto-updated using
perl -pi -0777 -e 's/static struct pci_driver (\w+) __pci_driver = {.*\.name\s*=\s*(\"\S+\").*\.probe\s*=\s*(\w+).*\.ids\s*=\s*(\w+).*\.class\s*=\s*(\w+).*?};/static struct pci_driver $1 =\n\tPCI_DRIVER ( $2, $4, $5 );\n\nBOOT_DRIVER ( $2, $3 );/ms' *.c
perl -pi -e 's/(PCI_DRIVER \(.*, )0 \);/${1}PCI_NO_CLASS );/' *.c
This commit is contained in:
@@ -2072,11 +2072,7 @@ PCI_ROM(0x1737, 0xab08, "tulip-1737-ab08","Tulip 0x1737 0xab08"),
|
||||
PCI_ROM(0x1737, 0xab09, "tulip-ab09", "Tulip 0x1737 0xab09"),
|
||||
};
|
||||
|
||||
static struct pci_driver tulip_driver __pci_driver = {
|
||||
.type = NIC_DRIVER,
|
||||
.name = "Tulip",
|
||||
.probe = tulip_probe,
|
||||
.ids = tulip_nics,
|
||||
.id_count = sizeof(tulip_nics)/sizeof(tulip_nics[0]),
|
||||
.class = 0,
|
||||
};
|
||||
static struct pci_driver tulip_driver =
|
||||
PCI_DRIVER ( "Tulip", tulip_nics, PCI_NO_CLASS );
|
||||
|
||||
BOOT_DRIVER ( "Tulip", tulip_probe );
|
||||
|
||||
Reference in New Issue
Block a user