Re: NE2000 PCI problems FIXED!

Olaf Titz (olaf@bigred.inka.de)
Fri, 22 May 1998 10:18:02 +0200


> Okay I will fix it. Some things need to be moved around a bit. I

While you're at it, check the cleanup_module() routine, that one has a
similar problem:

if (dev->priv != NULL) {
kfree(dev->priv);
dev->priv = NULL;
free_irq(dev->irq, dev);
irq2dev_map[dev->irq] = NULL;
release_region(dev->base_addr, NE_IO_EXTENT);
unregister_netdev(dev);
}

I think this order is more or less completely turned upside down...

olaf

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu