summaryrefslogtreecommitdiffstats
path: root/kernel/sound/pci/ali5451/ali5451.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/sound/pci/ali5451/ali5451.c')
-rw-r--r--kernel/sound/pci/ali5451/ali5451.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/sound/pci/ali5451/ali5451.c b/kernel/sound/pci/ali5451/ali5451.c
index 36470af7e..92b819e4f 100644
--- a/kernel/sound/pci/ali5451/ali5451.c
+++ b/kernel/sound/pci/ali5451/ali5451.c
@@ -1408,6 +1408,7 @@ snd_ali_playback_pointer(struct snd_pcm_substream *substream)
spin_unlock(&codec->reg_lock);
dev_dbg(codec->card->dev, "playback pointer returned cso=%xh.\n", cso);
+ cso %= runtime->buffer_size;
return cso;
}
@@ -1428,6 +1429,7 @@ static snd_pcm_uframes_t snd_ali_pointer(struct snd_pcm_substream *substream)
cso = inw(ALI_REG(codec, ALI_CSO_ALPHA_FMS + 2));
spin_unlock(&codec->reg_lock);
+ cso %= runtime->buffer_size;
return cso;
}