aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
Diffstat (limited to 'sound')
-rw-r--r--sound/pci/ctxfi/ctatc.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sound/pci/ctxfi/ctatc.c b/sound/pci/ctxfi/ctatc.c
index 4e25b24848bd..799eb98e7794 100644
--- a/sound/pci/ctxfi/ctatc.c
+++ b/sound/pci/ctxfi/ctatc.c
@@ -392,6 +392,10 @@ static int atc_pcm_playback_start(struct ct_atc *atc, struct ct_atc_pcm *apcm)
392 unsigned int max_cisz; 392 unsigned int max_cisz;
393 struct src *src = apcm->src; 393 struct src *src = apcm->src;
394 394
395 if (apcm->started)
396 return 0;
397 apcm->started = 1;
398
395 max_cisz = src->multi * src->rsc.msr; 399 max_cisz = src->multi * src->rsc.msr;
396 max_cisz = 0x80 * (max_cisz < 8 ? max_cisz : 8); 400 max_cisz = 0x80 * (max_cisz < 8 ? max_cisz : 8);
397 401