Fix this sparse warning: sound/isa/msnd/msnd_pinnacle.c:808:1: warning: Using plain integer as NULL pointer Signed-off-by: Hannes Eder <hannes@xxxxxxxxxxxxxx> --- sound/isa/msnd/msnd_pinnacle.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/sound/isa/msnd/msnd_pinnacle.c b/sound/isa/msnd/msnd_pinnacle.c index 60b6abd..add6c0a 100644 --- a/sound/isa/msnd/msnd_pinnacle.c +++ b/sound/isa/msnd/msnd_pinnacle.c @@ -805,7 +805,7 @@ module_param(calibrate_signal, int, S_IRUGO); #ifndef MSND_CLASSIC module_param_array(digital, int, NULL, S_IRUGO); module_param_array(cfg, long, NULL, S_IRUGO); -module_param_array(reset, int, 0, S_IRUGO); +module_param_array(reset, int, NULL, S_IRUGO); module_param_array(mpu_io, long, NULL, S_IRUGO); module_param_array(mpu_irq, int, NULL, S_IRUGO); module_param_array(ide_io0, long, NULL, S_IRUGO); -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html