Skip to content

Commit

Permalink
staging: line6: Fix line over 80 characters
Browse files Browse the repository at this point in the history
Fix checkpatch.pl issue with line over 80 characters in midi.c

Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com>
Signed-off-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
  • Loading branch information
Gulsah Kose authored and Peter P Waskiewicz Jr committed Mar 17, 2014
1 parent 432f857 commit 6461900
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/staging/line6/midi.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ static void line6_midi_transmit(struct snd_rawmidi_substream *substream)
}

for (;;) {
done = line6_midibuf_read(mb, chunk, LINE6_FALLBACK_MAXPACKETSIZE);
done = line6_midibuf_read(mb, chunk,
LINE6_FALLBACK_MAXPACKETSIZE);

if (done == 0)
break;
Expand Down

0 comments on commit 6461900

Please sign in to comment.