Manual tweaks to get all drivers to follow the "disable, poll, transmit,

irq" pattern.
This commit is contained in:
Michael Brown
2005-04-12 23:47:52 +00:00
parent 881023e9ca
commit d9c64c9422
6 changed files with 6 additions and 4 deletions

View File

@@ -738,8 +738,8 @@ static int sundance_probe ( struct dev *dev ) {
dev->disable = sundance_disable;
nic->poll = sundance_poll;
nic->transmit = sundance_transmit;
nic->irqno = pci->irq;
nic->irq = sundance_irq;
nic->irqno = pci->irq;
nic->ioaddr = BASE;
return 1;