summaryrefslogtreecommitdiffstats
path: root/sound/pci/rme9652
diff options
context:
space:
mode:
authorAdrian Knoth2013-05-31 12:57:11 +0200
committerTakashi Iwai2013-05-31 15:06:01 +0200
commit7b5593976c2cae886afb920885580e300ebb01ca (patch)
tree97504ef1f6d38bf7157819b9522dfdff2b9a2909 /sound/pci/rme9652
parentALSA: hdspm - Refactor SS/DS/QS clock multiplier into function (diff)
downloadkernel-qcow2-linux-7b5593976c2cae886afb920885580e300ebb01ca.tar.gz
kernel-qcow2-linux-7b5593976c2cae886afb920885580e300ebb01ca.tar.xz
kernel-qcow2-linux-7b5593976c2cae886afb920885580e300ebb01ca.zip
ALSA: hdspm - Allow SingleSpeed WordClock when in DS/QS mode
Similarly to MADI, WordClock can also be at SingleSpeed while the card is actually working at twice or four times this rate. If so, multiply the base rate accordingly. Signed-off-by: Adrian Knoth <adi@drcomp.erfurt.thur.de> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/rme9652')
-rw-r--r--sound/pci/rme9652/hdspm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/rme9652/hdspm.c b/sound/pci/rme9652/hdspm.c
index 8eb2070fd258..bd501931ee23 100644
--- a/sound/pci/rme9652/hdspm.c
+++ b/sound/pci/rme9652/hdspm.c
@@ -1225,7 +1225,7 @@ static int hdspm_external_sample_rate(struct hdspm *hdspm)
*/
if (rate != 0 &&
(status2 & HDSPM_SelSyncRefMask) == HDSPM_SelSyncRef_WORD)
- return rate;
+ return hdspm_rate_multiplier(hdspm, rate);
/* maybe a madi input (which is taken if sel sync is madi) */
if (status & HDSPM_madiLock) {