Commit 5284876d authored by Takashi Iwai's avatar Takashi Iwai
Browse files

Merge branch 'topic/midi20' into for-linus



Pull yet more a typo fix in the converter code.

Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parents 72cea3a3 983b9180
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -714,7 +714,7 @@ static int system_2p_ev_to_ump_midi1(const struct snd_seq_event *event,
{
	data->system.status = status;
	data->system.parm1 = (event->data.control.value >> 7) & 0x7f;
	data->system.parm1 = event->data.control.value & 0x7f;
	data->system.parm2 = event->data.control.value & 0x7f;
	return 1;
}