diff options
author | Takashi Iwai <tiwai@suse.de> | 2019-01-11 18:03:39 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2019-01-15 17:47:39 +0100 |
commit | 0c3df9edb24d06af388f5ff648232ba2361717fc (patch) | |
tree | 96b7b3f7914008246dc474fe45b5cea562087d81 /sound/x86 | |
parent | 2c76706843c998ceb136e8b04af1822832911e7b (diff) | |
download | linux-stable-0c3df9edb24d06af388f5ff648232ba2361717fc.tar.gz linux-stable-0c3df9edb24d06af388f5ff648232ba2361717fc.tar.bz2 linux-stable-0c3df9edb24d06af388f5ff648232ba2361717fc.zip |
ALSA: x86: Remove superfluous snd_pcm_suspend*() calls
The call of snd_pcm_suspend_all() & co became superfluous since we
call it in the PCM PM ops. Let's remove them.
Reviewed-by: Jaroslav Kysela <perex@perex.cz>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/x86')
-rw-r--r-- | sound/x86/intel_hdmi_audio.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/sound/x86/intel_hdmi_audio.c b/sound/x86/intel_hdmi_audio.c index 00c92eb854ce..16ca91f57e7f 100644 --- a/sound/x86/intel_hdmi_audio.c +++ b/sound/x86/intel_hdmi_audio.c @@ -1651,18 +1651,6 @@ static int had_create_jack(struct snd_intelhad *ctx, static int __maybe_unused hdmi_lpe_audio_suspend(struct device *dev) { struct snd_intelhad_card *card_ctx = dev_get_drvdata(dev); - int port; - - for_each_port(card_ctx, port) { - struct snd_intelhad *ctx = &card_ctx->pcm_ctx[port]; - struct snd_pcm_substream *substream; - - substream = had_substream_get(ctx); - if (substream) { - snd_pcm_suspend(substream); - had_substream_put(ctx); - } - } snd_power_change_state(card_ctx->card, SNDRV_CTL_POWER_D3hot); |