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
1 changed files with 2 additions and 2 deletions
|
@ -434,8 +434,8 @@ static void __init superio_parport_init(void)
|
||||||
0 /*base_hi*/,
|
0 /*base_hi*/,
|
||||||
PAR_IRQ,
|
PAR_IRQ,
|
||||||
PARPORT_DMA_NONE /* dma */,
|
PARPORT_DMA_NONE /* dma */,
|
||||||
NULL /*struct pci_dev* */),
|
NULL /*struct pci_dev* */,
|
||||||
0 /* shared irq flags */ )
|
0 /* shared irq flags */))
|
||||||
|
|
||||||
printk(KERN_WARNING PFX "Probing parallel port failed.\n");
|
printk(KERN_WARNING PFX "Probing parallel port failed.\n");
|
||||||
#endif /* CONFIG_PARPORT_PC */
|
#endif /* CONFIG_PARPORT_PC */
|
||||||
|
|
Loading…
Add table
Reference in a new issue