diff options
author | Takashi Iwai <tiwai@suse.de> | 2019-01-11 18:03:16 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2019-01-15 17:47:32 +0100 |
commit | 2c76706843c998ceb136e8b04af1822832911e7b (patch) | |
tree | 4fd6c2e752a001e6893693b37e3823df4fa454c0 /sound/usb/line6 | |
parent | 17bc4815de586d001c82d0ddf75247283c3f002a (diff) | |
download | linux-stable-2c76706843c998ceb136e8b04af1822832911e7b.tar.gz linux-stable-2c76706843c998ceb136e8b04af1822832911e7b.tar.bz2 linux-stable-2c76706843c998ceb136e8b04af1822832911e7b.zip |
ALSA: usb: 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/usb/line6')
-rw-r--r-- | sound/usb/line6/driver.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sound/usb/line6/driver.c b/sound/usb/line6/driver.c index c1376bfdc90b..7afe8fae4939 100644 --- a/sound/usb/line6/driver.c +++ b/sound/usb/line6/driver.c @@ -849,10 +849,8 @@ int line6_suspend(struct usb_interface *interface, pm_message_t message) if (line6->properties->capabilities & LINE6_CAP_CONTROL) line6_stop_listen(line6); - if (line6pcm != NULL) { - snd_pcm_suspend_all(line6pcm->pcm); + if (line6pcm != NULL) line6pcm->flags = 0; - } return 0; } |