Skip to content

Commit

Permalink
parisc: superio: fix build breakage
Browse files Browse the repository at this point in the history
Usage of parport_pc_probe_port was changed in 28783eb
(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>
  • Loading branch information
Alexander Beregalov authored and Kyle McMartin committed Jul 3, 2009
1 parent ca0844e commit 0c5cb79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/parisc/superio.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit 0c5cb79

Please sign in to comment.