mirror of
https://github.com/ipxe/ipxe
synced 2025-12-26 17:42:47 +03:00
Updated to current API.
This commit is contained in:
@@ -13,26 +13,28 @@
|
||||
* The EISA probe function
|
||||
*
|
||||
*/
|
||||
static int el3_eisa_probe ( struct dev *dev, struct eisa_device *eisa ) {
|
||||
struct nic *nic = nic_device ( dev );
|
||||
static int el3_eisa_probe ( struct nic *nic, struct eisa_device *eisa ) {
|
||||
|
||||
enable_eisa_device ( eisa );
|
||||
nic->ioaddr = eisa->ioaddr;
|
||||
nic->irqno = 0;
|
||||
printf ( "3C5x9 board on EISA at %#hx - ", nic->ioaddr );
|
||||
eisa_fill_nic ( nic, eisa );
|
||||
|
||||
/* Hand off to generic t5x9 probe routine */
|
||||
return t5x9_probe ( nic, ISA_PROD_ID ( PROD_ID ), ISA_PROD_ID_MASK );
|
||||
}
|
||||
|
||||
static void el3_eisa_disable ( struct nic *nic, struct eisa_device *eisa ) {
|
||||
t5x9_disable ( nic );
|
||||
disable_eisa_device ( eisa );
|
||||
}
|
||||
|
||||
static struct eisa_id el3_eisa_adapters[] = {
|
||||
{ "3Com 3c509 EtherLink III (EISA)", MFG_ID, PROD_ID },
|
||||
};
|
||||
|
||||
static struct eisa_driver el3_eisa_driver =
|
||||
EISA_DRIVER ( "3c509 (EISA)", el3_eisa_adapters );
|
||||
EISA_DRIVER ( el3_eisa_adapters );
|
||||
|
||||
BOOT_DRIVER ( "3c509 (EISA)", find_eisa_boot_device, el3_eisa_driver,
|
||||
el3_eisa_probe );
|
||||
DRIVER ( "3c509 (EISA)", nic_driver, eisa_driver, el3_eisa_driver,
|
||||
el3_eisa_probe, el3_eisa_disable );
|
||||
|
||||
ISA_ROM ( "3c509-eisa","3c509 (EISA)" );
|
||||
|
||||
Reference in New Issue
Block a user