diff options
author | Takashi Iwai <tiwai@suse.de> | 2007-05-30 06:46:21 -0400 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2007-07-20 05:11:22 -0400 |
commit | 304e3bb7a15d839cef64b24a1bcc1230b2ae6fa6 (patch) | |
tree | 063e97cef6c888cb161b29d7c9b9db73211876e1 /sound/pci/rme9652 | |
parent | ba8c3c37db0d6bf5e6de25016975ebfb558d2aba (diff) |
[ALSA] rme9652 - Fix the hw_pointer check
The negative check in hw_pointer callback doesn't work because the
value is unsigned. Cast to int in the comparison to fix this.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'sound/pci/rme9652')
-rw-r--r-- | sound/pci/rme9652/rme9652.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/rme9652/rme9652.c b/sound/pci/rme9652/rme9652.c index bd7dbd267ed1..2de27405a0bd 100644 --- a/sound/pci/rme9652/rme9652.c +++ b/sound/pci/rme9652/rme9652.c | |||
@@ -406,7 +406,7 @@ static snd_pcm_uframes_t rme9652_hw_pointer(struct snd_rme9652 *rme9652) | |||
406 | } else if (!frag) | 406 | } else if (!frag) |
407 | return 0; | 407 | return 0; |
408 | offset -= rme9652->max_jitter; | 408 | offset -= rme9652->max_jitter; |
409 | if (offset < 0) | 409 | if ((int)offset < 0) |
410 | offset += period_size * 2; | 410 | offset += period_size * 2; |
411 | } else { | 411 | } else { |
412 | if (offset > period_size + rme9652->max_jitter) { | 412 | if (offset > period_size + rme9652->max_jitter) { |