projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a4444da
)
ALSA: pcm - Fix a typo in hw_ptr update check
author
Jaroslav Kysela
<perex@perex.cz>
Sat, 6 Jun 2009 16:32:06 +0000
(18:32 +0200)
committer
Takashi Iwai
<tiwai@suse.de>
Sat, 6 Jun 2009 16:32:06 +0000
(18:32 +0200)
Fix a typo in the commit
13f040f9e55d41e92e485389123654971e03b819
ALSA: PCM midlevel: Do not update hw_ptr_jiffies when hw_ptr is not changed
which causes obvious problems with PA.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/core/pcm_lib.c
patch
|
blob
|
blame
|
history
diff --git
a/sound/core/pcm_lib.c
b/sound/core/pcm_lib.c
index dd9126b92c19ec77b86ecc8e293ec0291e92172f..bf34603a7a38b2d2b4651e25da99da1ec97396f1 100644
(file)
--- a/
sound/core/pcm_lib.c
+++ b/
sound/core/pcm_lib.c
@@
-371,7
+371,7
@@
int snd_pcm_update_hw_ptr(struct snd_pcm_substream *substream)
runtime->silence_size > 0)
snd_pcm_playback_silence(substream, new_hw_ptr);
- if (runtime->status->hw_ptr
!
= new_hw_ptr)
+ if (runtime->status->hw_ptr
=
= new_hw_ptr)
return 0;
runtime->hw_ptr_base = hw_base;