Commit a0d6f2b1 authored by Sachin Kamat's avatar Sachin Kamat Committed by Greg Kroah-Hartman

staging: line6: midi: Use NULL instead of 0 for pointers

Use NULL instead of 0 for pointers.
Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 53fa1f4f
......@@ -205,7 +205,7 @@ static void line6_midi_input_trigger(struct snd_rawmidi_substream *substream,
if (up)
line6->line6midi->substream_receive = substream;
else
line6->line6midi->substream_receive = 0;
line6->line6midi->substream_receive = NULL;
}
static struct snd_rawmidi_ops line6_midi_output_ops = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment