瀏覽代碼

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>
Andrew Morton 13 年之前
父節點
當前提交
45dac90f0c
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      drivers/parport/parport_pc.c

+ 2 - 2
drivers/parport/parport_pc.c

@@ -3404,8 +3404,8 @@ static int __init parport_init_mode_setup(char *str)
 #endif
 #endif
 
 
 #ifdef MODULE
 #ifdef MODULE
-static const char *irq[PARPORT_PC_MAX_PORTS];
-static const char *dma[PARPORT_PC_MAX_PORTS];
+static char *irq[PARPORT_PC_MAX_PORTS];
+static char *dma[PARPORT_PC_MAX_PORTS];
 
 
 MODULE_PARM_DESC(io, "Base I/O address (SPP regs)");
 MODULE_PARM_DESC(io, "Base I/O address (SPP regs)");
 module_param_array(io, int, NULL, 0);
 module_param_array(io, int, NULL, 0);