Skip to content

Commit

Permalink
[ALSA] hdsp: support for mixer matrix of RME9632 rev 152
Browse files Browse the repository at this point in the history
Added the support for mixer matrix of RME9632 rev 152.

Signed-off-by: Remy Bruno <remy.bruno@trinnov.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@suse.cz>
  • Loading branch information
Remy Bruno authored and Jaroslav Kysela committed Feb 9, 2007
1 parent 9bf5f8a commit 6add0f4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sound/pci/rme9652/hdsp.c
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand All @@ -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;
Expand Down

0 comments on commit 6add0f4

Please sign in to comment.