staging: line6: pod.c: fix checkpatch warning
authorLaurent Navet <laurent.navet@gmail.com>
Mon, 25 Feb 2013 13:08:49 +0000 (14:08 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 11 Mar 2013 16:47:13 +0000 (09:47 -0700)
 - WARNING: braces {} are not necessary for single statement blocks

Signed-off-by: Laurent Navet <laurent.navet@gmail.com>
Reviewed-by: Stefan Hajnoczi <stefanha@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/line6/pod.c

index 74898c3..699b217 100644 (file)
@@ -148,9 +148,8 @@ void line6_pod_process_message(struct usb_line6_pod *pod)
            buf[0] != (LINE6_SYSEX_BEGIN | LINE6_CHANNEL_UNKNOWN)) {
                return;
        }
-       if (memcmp(buf + 1, line6_midi_id, sizeof(line6_midi_id)) != 0) {
+       if (memcmp(buf + 1, line6_midi_id, sizeof(line6_midi_id)) != 0)
                return;
-       }
 
        if (buf[5] == POD_SYSEX_SYSTEM && buf[6] == POD_MONITOR_LEVEL) {
                short value = ((int)buf[7] << 12) | ((int)buf[8] << 8) |