Skip to content

Commit

Permalink
Merge branch 'topic/midi20' into for-linus
Browse files Browse the repository at this point in the history
Pull yet more a typo fix in the converter code.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
  • Loading branch information
tiwai committed Jul 5, 2023
2 parents 72cea3a + 983b918 commit 5284876
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/core/seq/seq_ump_convert.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 5284876

Please sign in to comment.