Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 81653
b: refs/heads/master
c: 192b8e3
h: refs/heads/master
i:
  81651: e10e267
v: v3
  • Loading branch information
Andreas Degert authored and Jaroslav Kysela committed Jan 31, 2008
1 parent 5b6d27b commit 7d3d0dd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e70515dd518bbd5b9e2e5c90a56347df0e871389
refs/heads/master: 192b8e3922c916cbacac7e5a190d9412ae39a7ee
10 changes: 8 additions & 2 deletions trunk/sound/pci/rme9652/hdsp.c
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,10 @@ static int hdsp_playback_to_output_key (struct hdsp *hdsp, int in, int out)
case Multiface:
case Digiface:
default:
return (64 * out) + (32 + (in));
if (hdsp->firmware_rev == 0xa)
return (64 * out) + (32 + (in));
else
return (52 * out) + (26 + (in));
case H9632:
return (32 * out) + (16 + (in));
case H9652:
Expand All @@ -621,7 +624,10 @@ static int hdsp_input_to_output_key (struct hdsp *hdsp, int in, int out)
case Multiface:
case Digiface:
default:
return (64 * out) + in;
if (hdsp->firmware_rev == 0xa)
return (64 * out) + in;
else
return (52 * out) + in;
case H9632:
return (32 * out) + in;
case H9652:
Expand Down

0 comments on commit 7d3d0dd

Please sign in to comment.