Commit 6add0f42 authored by Remy Bruno's avatar Remy Bruno Committed by Jaroslav Kysela

[ALSA] hdsp: support for mixer matrix of RME9632 rev 152

Added the support for mixer matrix of RME9632 rev 152.
Signed-off-by: default avatarRemy Bruno <remy.bruno@trinnov.com>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
Signed-off-by: default avatarJaroslav Kysela <perex@suse.cz>
parent 9bf5f8aa
......@@ -598,6 +598,7 @@ static int hdsp_playback_to_output_key (struct hdsp *hdsp, int in, int out)
return (64 * out) + (32 + (in));
case 0x96:
case 0x97:
case 0x98:
return (32 * out) + (16 + (in));
default:
return (52 * out) + (26 + (in));
......@@ -611,6 +612,7 @@ static int hdsp_input_to_output_key (struct hdsp *hdsp, int in, int out)
return (64 * out) + in;
case 0x96:
case 0x97:
case 0x98:
return (32 * out) + in;
default:
return (52 * out) + in;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment