Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drivers/parport/parport_pc.c: fix warnings

drivers/parport/parport_pc.c: In function '__check_irq':
drivers/parport/parport_pc.c:3415: warning: return from incompatible pointer type
drivers/parport/parport_pc.c: In function '__check_dma':
drivers/parport/parport_pc.c:3417: warning: return from incompatible pointer type

Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Andrew Morton and committed by
Linus Torvalds
45dac90f 6e6f0a1f

+2 -2
+2 -2
drivers/parport/parport_pc.c
··· 3404 3404 #endif 3405 3405 3406 3406 #ifdef MODULE 3407 - static const char *irq[PARPORT_PC_MAX_PORTS]; 3408 - static const char *dma[PARPORT_PC_MAX_PORTS]; 3407 + static char *irq[PARPORT_PC_MAX_PORTS]; 3408 + static char *dma[PARPORT_PC_MAX_PORTS]; 3409 3409 3410 3410 MODULE_PARM_DESC(io, "Base I/O address (SPP regs)"); 3411 3411 module_param_array(io, int, NULL, 0);