staging: line6: midi: Use NULL instead of 0 for pointers
authorSachin Kamat <sachin.kamat@linaro.org>
Wed, 9 Oct 2013 10:28:26 +0000 (15:58 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 11 Oct 2013 22:36:30 +0000 (15:36 -0700)
Use NULL instead of 0 for pointers.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/line6/midi.c

index e3f9a53dbd96604ee5c6ab6e9eccd06511a96be7..52da4d9d216429e34f9c49a9dc7e735a6c821aa0 100644 (file)
@@ -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 = {
This page took 0.026234 seconds and 5 git commands to generate.