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
+1 -1
View File
@@ -946,9 +946,9 @@ static int pcnet32_probe ( struct dev *dev ) {
printf("\n");
}
dev->disable = pcnet32_disable;
nic->poll = pcnet32_poll;
nic->transmit = pcnet32_transmit;
dev->disable = pcnet32_disable;
nic->irq = pcnet32_irq;
return 1;