Hello to all!
Excuse me if I'm writing to the wrong place, since I am new to kernel
patching. :)
I discovered that eepro driver in stock 2.2 kernels (2.2.2 to 2.2.5 tested)
has a small bug which prevents from having several eepro cards in one machine when
compiling driver as module. The following patch fixes the problem.
------------------------------------------------------------------------------
--- eepro.c.orig Thu Jan 7 19:47:54 1999
+++ eepro.c Wed Apr 14 11:00:13 1999
@@ -1681,9 +1681,9 @@
#if defined (LINUX_VERSION_CODE) && LINUX_VERSION_CODE > 0x20155
MODULE_AUTHOR("Pascal Dupuis <[EMAIL PROTECTED]> for the 2.1 stuff (locking,...)");
MODULE_DESCRIPTION("Intel i82595 ISA EtherExpressPro10/10+ driver");
-MODULE_PARM(io, "i");
-MODULE_PARM(irq, "i");
-MODULE_PARM(mem, "i");
+MODULE_PARM(io, "1-8i");
+MODULE_PARM(irq, "1-8i");
+MODULE_PARM(mem, "1-8i");
#endif
int
Admie
-
To unsubscribe from this list: send the line "unsubscribe linux-net" in
the body of a message to [EMAIL PROTECTED]