Commit 01e9607815755f748eb8722c3c3d8f308b7b4470
Committed by
Takashi Iwai
1 parent
88fabbfcc6
Exists in
master
and in
7 other branches
ALSA: hdspm - Fix DS/QS output channel mappings on RME MADI/MADIface
Caused by two typos, no output channel mappings were assigned for MADI/MADIface at double/quad speed. The channel mapping is indeed identical to the single speed mapping, the cards will simply use the first N channels. Signed-off-by: Florian Faber <faber@faberman.de> Signed-off-by: Fredrik Lingvall <fredrik.lingvall@gmail.com> Signed-off-by: Adrian Knoth <adi@drcomp.erfurt.thur.de> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff
sound/pci/rme9652/hdspm.c
... | ... | @@ -6462,9 +6462,9 @@ |
6462 | 6462 | |
6463 | 6463 | hdspm->channel_map_in_ss = hdspm->channel_map_out_ss = |
6464 | 6464 | channel_map_unity_ss; |
6465 | - hdspm->channel_map_in_ds = hdspm->channel_map_out_ss = | |
6465 | + hdspm->channel_map_in_ds = hdspm->channel_map_out_ds = | |
6466 | 6466 | channel_map_unity_ss; |
6467 | - hdspm->channel_map_in_qs = hdspm->channel_map_out_ss = | |
6467 | + hdspm->channel_map_in_qs = hdspm->channel_map_out_qs = | |
6468 | 6468 | channel_map_unity_ss; |
6469 | 6469 | |
6470 | 6470 | hdspm->port_names_in_ss = hdspm->port_names_out_ss = |