From: Remy Bruno Date: Mon, 9 Oct 2006 13:52:01 +0000 (+0200) Subject: [ALSA] hdsp: support for mixer matrix of RME9632 rev 152 X-Git-Tag: accepted/tizen/common/20141203.182822~32949^2~62^2~180 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6add0f4242fc52a97a92fca99a39f35298c2b50b;p=platform%2Fkernel%2Flinux-arm64.git [ALSA] hdsp: support for mixer matrix of RME9632 rev 152 Added the support for mixer matrix of RME9632 rev 152. Signed-off-by: Remy Bruno Signed-off-by: Takashi Iwai Signed-off-by: Jaroslav Kysela --- diff --git a/sound/pci/rme9652/hdsp.c b/sound/pci/rme9652/hdsp.c index 6383987..849ffe4 100644 --- a/sound/pci/rme9652/hdsp.c +++ b/sound/pci/rme9652/hdsp.c @@ -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;