#include "midibuf.h"
 
+
 static int midibuf_message_length(unsigned char code)
 {
        int message_length;
 
                message_length = length[(code >> 4) - 8];
        } else {
-               /*
-                  Note that according to the MIDI specification 0xf2 is
-                  the "Song Position Pointer", but this is used by Line 6
-                  to send sysex messages to the host.
-                */
-               static const int length[] = { -1, 2, -1, 2, -1, -1, 1, 1, 1, 1,
+               static const int length[] = { -1, 2, 2, 2, -1, -1, 1, 1, 1, -1,
                        1, 1, 1, -1, 1, 1
                };
                message_length = length[code & 0x0f];
 }
 
 int line6_midibuf_read(struct midi_buffer *this, unsigned char *data,
-                      int length)
+                      int length, int read_type)
 {
        int bytes_used;
        int length1, length2;
 
        length1 = this->size - this->pos_read;
 
-       /* check MIDI command length */
        command = this->buf[this->pos_read];
+       /*
+          PODxt always has status byte lower nibble set to 0010,
+          when it means to send 0000, so we correct if here so
+          that control/program changes come on channel 1 and
+          sysex message status byte is correct
+        */
+       if (read_type == LINE6_MIDIBUF_READ_RX) {
+               if (command == 0xb2 || command == 0xc2 || command == 0xf2) {
+                       unsigned char fixed = command & 0xf0;
+                       this->buf[this->pos_read] = fixed;
+                       command = fixed;
+               }
+       }
 
+       /* check MIDI command length */
        if (command & 0x80) {
                midi_length = midibuf_message_length(command);
                this->command_prev = command;
 
 #ifndef MIDIBUF_H
 #define MIDIBUF_H
 
+#define LINE6_MIDIBUF_READ_TX 0
+#define LINE6_MIDIBUF_READ_RX 1
+
 struct midi_buffer {
        unsigned char *buf;
        int size;
 extern int line6_midibuf_ignore(struct midi_buffer *mb, int length);
 extern int line6_midibuf_init(struct midi_buffer *mb, int size, int split);
 extern int line6_midibuf_read(struct midi_buffer *mb, unsigned char *data,
-                             int length);
+                             int length, int read_type);
 extern void line6_midibuf_reset(struct midi_buffer *mb);
 extern int line6_midibuf_write(struct midi_buffer *mb, unsigned char *data,
                               int length);
 
        .bytes_per_channel = 3 /* SNDRV_PCM_FMTBIT_S24_3LE */
 };
 
+
 static const char pod_version_header[] = {
-       0xf2, 0x7e, 0x7f, 0x06, 0x02
+       0xf0, 0x7e, 0x7f, 0x06, 0x02
 };
 
 static char *pod_alloc_sysex_buffer(struct usb_line6_pod *pod, int code,