Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d86bf923 authored by Jaroslav Kysela's avatar Jaroslav Kysela Committed by Takashi Iwai
Browse files

ALSA: pcm - Fix a typo in hw_ptr update check



Fix a typo in the commit 13f040f9
  ALSA: PCM midlevel: Do not update hw_ptr_jiffies when hw_ptr is not changed
which causes obvious problems with PA.

Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent a4444da3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;