Updated to current API.

This commit is contained in:
Michael Brown
2005-04-22 11:57:35 +00:00
parent 329ccfdc21
commit e596c42ade
5 changed files with 29 additions and 26 deletions

View File

@@ -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)" );