Alexander E. Patrakov wrote: > > Here it boots and works, but I can't say that I have done any serious > testing. The following message appears in the kernel log: > > Dec 25 11:38:09 lfs parport_pc: Ignoring new-style parameters in presence of > obsolete ones > Dec 25 11:38:09 lfs parport_pc: VIA 686A/8231 detected > Dec 25 11:38:09 lfs parport_pc: probing current configuration > Dec 25 11:38:09 lfs parport_pc: Current parallel port base: 0x378 > Dec 25 11:38:09 lfs parport0: PC-style at 0x378 (0x778), irq 7, using FIFO > [PCSPP,TRISTATE,COMPAT,ECP] > Dec 25 11:38:09 lfs parport_pc: VIA parallel port: io=0x378, irq=7 > > I don't understand the first line, and it wasn't there in 2.6.9. Could you > please explain what it means? I don't pass any parameters to the module. I > use module-init-tools version 3.0 although I know it is not the latest. Somehow parport_pc.c ended up with mixed old-style and new-style module parameters, but mixing them is not allowed. Use module_param() instead of MODULE_PARM() -- cannot be mixed. Signed-off-by: Randy Dunlap diffstat:= drivers/parport/parport_pc.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)