Hi all! Compiling plain 2.4.4 kernel on a i486 with_out_ PCI support, I encountered the following error with PC parallel port as a module: parport_pc.c: In function `parport_pc_find_ports': parport_pc.c:2618: too many arguments to function `parport_pc_init_superio' make[2]: *** [parport_pc.o] Error 1 make[1]: *** [_modsubdir_parport] Error 2 make: *** [_mod_drivers] Error 2 This was caused by a non-pci substitute for __init parport_pc_init_superio which lacked the proper argument definitions. I tried to add those, and it compiled just fine for me. Therefor I proposed the appended fix. Any comments are welcome and encouraged, please CC me. /Felix diff -urN linux.vanilla/drivers/parport/parport_pc.c linux/drivers/parport/parport_pc.c --- linux.vanilla/drivers/parport/parport_pc.c Sat Apr 21 01:23:12 2001 +++ linux/drivers/parport/parport_pc.c Sat Apr 28 19:27:22 2001 @@ -2576,7 +2576,7 @@ } #else static struct pci_driver parport_pc_pci_driver; -static int __init parport_pc_init_superio(void) {return 0;} +static int __init parport_pc_init_superio (int autoirq, int autodma) {return 0;} #endif /* CONFIG_PCI */ /* This is called by parport_pc_find_nonpci_ports (in asm/parport.h) */ -- +----------------------------------------------------------------------+ [EMAIL PROTECTED] http://www.uni-karlsruhe.de/~ugyb +----------------------------------------------------------------------+ - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/