summaryrefslogtreecommitdiffstats
path: root/src/drivers/net/3c529.c
diff options
context:
space:
mode:
authorMichael Brown2005-04-22 13:57:35 +0200
committerMichael Brown2005-04-22 13:57:35 +0200
commite596c42adeb8c5dd73e5494a7acd2cd75328ff08 (patch)
tree506d8b84e052a2cb28b4e4feb066ce62fa9a1d6c /src/drivers/net/3c529.c
parentUpdated to new API. (diff)
downloadipxe-e596c42adeb8c5dd73e5494a7acd2cd75328ff08.tar.gz
ipxe-e596c42adeb8c5dd73e5494a7acd2cd75328ff08.tar.xz
ipxe-e596c42adeb8c5dd73e5494a7acd2cd75328ff08.zip
Updated to current API.
Diffstat (limited to 'src/drivers/net/3c529.c')
-rw-r--r--src/drivers/net/3c529.c17
1 files changed, 11 insertions, 6 deletions
diff --git a/src/drivers/net/3c529.c b/src/drivers/net/3c529.c
index c8ad99b7..df5e57a0 100644
--- a/src/drivers/net/3c529.c
+++ b/src/drivers/net/3c529.c
@@ -20,19 +20,23 @@
*
*/
-static int t529_probe ( struct dev *dev, struct mca_device *mca ) {
- struct nic *nic = nic_device ( dev );
+static int t529_probe ( struct nic *nic, struct mca_device *mca ) {
/* Retrieve NIC parameters from MCA device parameters */
+ mca_fill_nic ( nic, mca );
nic->ioaddr = ( ( mca->pos[4] & 0xfc ) | 0x02 ) << 8;
nic->irqno = mca->pos[5] & 0x0f;
- printf ( "%s board found on MCA at %#hx IRQ %d -",
- dev->name, nic->ioaddr, nic->irqno );
+ printf ( "3c529 board found on MCA at %#hx IRQ %d -",
+ nic->ioaddr, nic->irqno );
/* Hand off to generic t5x9 probe routine */
return t5x9_probe ( nic, MCA_ID ( mca ), 0xffff );
}
+static int t529_disable ( struct nic *nic, struct mca_device *mca __unused ) {
+ t5x9_disable ( nic );
+}
+
static struct mca_id el3_mca_adapters[] = {
{ "3Com 3c529 EtherLink III (10base2)", 0x627c },
{ "3Com 3c529 EtherLink III (10baseT)", 0x627d },
@@ -42,8 +46,9 @@ static struct mca_id el3_mca_adapters[] = {
};
static struct mca_driver t529_driver
- = MCA_DRIVER ( "3c529", el3_mca_adapters );
+ = MCA_DRIVER ( el3_mca_adapters );
-BOOT_DRIVER ( "3c529", find_mca_boot_device, t529_driver, t529_probe );
+DRIVER ( "3c529", nic_driver, mca_driver, t529_driver,
+ t529_probe, t529_disable );
ISA_ROM( "3c529", "3c529 == MCA 3c509" );