Revert "ALSA: ump: Don't enumeration invalid groups for legacy rawmidi"
commit abbff41b6932cde359589fd51f4024b7c85f366b upstream.
This reverts commit c2d188e137.
Although it's fine to filter the invalid UMP groups at the first probe
time, this will become a problem when UMP groups are updated and
(re-)activated. Then there is no way to re-add the substreams
properly for the legacy rawmidi, and the new active groups will be
still invisible.
So let's revert the change. This will move back to showing the full
16 groups, but it's better than forever lost.
Link: https://patch.msgid.link/20241230114023.3787-1-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
a93c6cf086
commit
56432f6845
+1
-1
@@ -1244,7 +1244,7 @@ static int fill_legacy_mapping(struct snd_ump_endpoint *ump)
|
||||
|
||||
num = 0;
|
||||
for (i = 0; i < SNDRV_UMP_MAX_GROUPS; i++)
|
||||
if ((group_maps & (1U << i)) && ump->groups[i].valid)
|
||||
if (group_maps & (1U << i))
|
||||
ump->legacy_mapping[num++] = i;
|
||||
|
||||
return num;
|
||||
|
||||
Reference in New Issue
Block a user