ALSA: usb-audio: Fix runtime PM unbalance
authorTakashi Iwai <tiwai@suse.de>
Wed, 19 Aug 2015 05:20:14 +0000 (07:20 +0200)
committerTakashi Iwai <tiwai@suse.de>
Wed, 19 Aug 2015 12:57:51 +0000 (14:57 +0200)
commit9003ebb13f61e8c78a641e0dda7775183ada0625
tree96b0d4793235149b47aad7a34dc853cc39e57d67
parent7ccb0a9917a511de1d5f92980f26885484d9a914
ALSA: usb-audio: Fix runtime PM unbalance

The fix for deadlock in PM in commit [1ee23fe07ee8: ALSA: usb-audio:
Fix deadlocks at resuming] introduced a new check of in_pm flag.
However, the brainless patch author evaluated it in a wrong way
(logical AND instead of logical OR), thus usb_autopm_get_interface()
is wrongly called at probing, leading to unbalance of runtime PM
refcount.

This patch fixes it by correcting the logic.

Reported-by: Hans Yang <hansy@nvidia.com>
Fixes: 1ee23fe07ee8 ('ALSA: usb-audio: Fix deadlocks at resuming')
Cc: <stable@vger.kernel.org> [v3.15+]
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/usb/card.c