summaryrefslogtreecommitdiffstats
path: root/drivers/staging/line6
diff options
context:
space:
mode:
authorStefan Hajnoczi2013-01-11 23:08:12 +0100
committerGreg Kroah-Hartman2013-01-12 01:40:50 +0100
commit0a1eb4e847b8a4919a909f96c08f66b0e5cd145b (patch)
treeb017c1c7de7f4d3e41d7dab3290ac55750441716 /drivers/staging/line6
parentstaging: line6: drop ToneportSourceInfo CamelCase name (diff)
downloadkernel-qcow2-linux-0a1eb4e847b8a4919a909f96c08f66b0e5cd145b.tar.gz
kernel-qcow2-linux-0a1eb4e847b8a4919a909f96c08f66b0e5cd145b.tar.xz
kernel-qcow2-linux-0a1eb4e847b8a4919a909f96c08f66b0e5cd145b.zip
staging: line6: wrap lines to 80 chars in pod.c
Fix the following checkpatch.pl warnings: WARNING: line over 80 characters #4508: FILE: staging/line6/pod.c:37: + /* POD_SYSEX_DUMPMEM2 = 0x76 */ /* dumps entire internal memory of PODxt Pro */ WARNING: line over 80 characters #4630: FILE: staging/line6/pod.c:159: + if (memcmp(buf + 1, line6_midi_id, sizeof(line6_midi_id)) == 0) { Signed-off-by: Stefan Hajnoczi <stefanha@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/line6')
-rw-r--r--drivers/staging/line6/pod.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/staging/line6/pod.c b/drivers/staging/line6/pod.c
index e542540d0db3..1a1190604210 100644
--- a/drivers/staging/line6/pod.c
+++ b/drivers/staging/line6/pod.c
@@ -34,7 +34,9 @@ enum {
POD_SYSEX_DUMPMEM = 0x73,
POD_SYSEX_DUMP = 0x74,
POD_SYSEX_DUMPREQ = 0x75
- /* POD_SYSEX_DUMPMEM2 = 0x76 */ /* dumps entire internal memory of PODxt Pro */
+
+ /* dumps entire internal memory of PODxt Pro */
+ /* POD_SYSEX_DUMPMEM2 = 0x76 */
};
enum {
@@ -156,7 +158,8 @@ void line6_pod_process_message(struct usb_line6_pod *pod)
case LINE6_SYSEX_BEGIN | LINE6_CHANNEL_DEVICE:
case LINE6_SYSEX_BEGIN | LINE6_CHANNEL_UNKNOWN:
- if (memcmp(buf + 1, line6_midi_id, sizeof(line6_midi_id)) == 0) {
+ if (memcmp(buf + 1, line6_midi_id,
+ sizeof(line6_midi_id)) == 0) {
switch (buf[5]) {
case POD_SYSEX_DUMP:
break;