diff options
author | Takashi Iwai <tiwai@suse.de> | 2024-04-28 12:00:57 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2024-04-28 12:00:57 +0200 |
commit | 6b844f0626fca6acec83521081aaa82cdf9add6b (patch) | |
tree | d7bbb439bfbd80d46c57a3d9962c695b4cc7bb33 /sound/core | |
parent | 078c95fe8c44e04e8baa3ade62efc21dcefeb52a (diff) | |
parent | 1aa41272efff530ccf6cd8455133ada1d09474a2 (diff) | |
download | lwn-6b844f0626fca6acec83521081aaa82cdf9add6b.tar.gz lwn-6b844f0626fca6acec83521081aaa82cdf9add6b.zip |
Merge branch 'topic/emu10k1-fix' into for-next
Pull emu10k1 fixes from Oswald Buddenhagen
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/core')
-rw-r--r-- | sound/core/seq/seq_ump_convert.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/core/seq/seq_ump_convert.c b/sound/core/seq/seq_ump_convert.c index b141024830ec..ee6ac649df83 100644 --- a/sound/core/seq/seq_ump_convert.c +++ b/sound/core/seq/seq_ump_convert.c @@ -428,7 +428,7 @@ static int cvt_ump_midi2_to_midi1(struct snd_seq_client *dest, midi1->note.group = midi2->note.group; midi1->note.status = midi2->note.status; midi1->note.channel = midi2->note.channel; - switch (midi2->note.status << 4) { + switch (midi2->note.status) { case UMP_MSG_STATUS_NOTE_ON: case UMP_MSG_STATUS_NOTE_OFF: midi1->note.note = midi2->note.note; |