parisc: superio: fix build breakage
Usage of parport_pc_probe_port was changed in 28783eb52
(parport: Fix various uses of parport_pc).
It introduced this build error:
drivers/parisc/superio.c: In function 'superio_parport_init':
drivers/parisc/superio.c:437: error: too few arguments to function
'parport_pc_probe_port'
Fix it.
Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com>
Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>
This commit is contained in:
parent
ca0844e347
commit
0c5cb79198
|
@ -434,8 +434,8 @@ static void __init superio_parport_init(void)
|
|||
0 /*base_hi*/,
|
||||
PAR_IRQ,
|
||||
PARPORT_DMA_NONE /* dma */,
|
||||
NULL /*struct pci_dev* */),
|
||||
0 /* shared irq flags */ )
|
||||
NULL /*struct pci_dev* */,
|
||||
0 /* shared irq flags */))
|
||||
|
||||
printk(KERN_WARNING PFX "Probing parallel port failed.\n");
|
||||
#endif /* CONFIG_PARPORT_PC */
|
||||
|
|
Loading…
Reference in New Issue