From: Lihua Yao Date: Wed, 15 Aug 2018 15:20:34 +0000 (+0800) Subject: ALSA: ac97: fix check of pm_runtime_get_sync failure X-Git-Tag: v4.19-rc1~38^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d15ec0b482ff502e4e19e43d15aa5072e4290199;p=thirdparty%2Fkernel%2Fstable.git ALSA: ac97: fix check of pm_runtime_get_sync failure pm_runtime_get_sync returns negative on failure. Fixes: 74426fbff66e ("ALSA: ac97: add an ac97 bus") Signed-off-by: Lihua Yao Acked-by: Robert Jarzmik Cc: Signed-off-by: Takashi Iwai --- diff --git a/sound/ac97/bus.c b/sound/ac97/bus.c index 7a0dfca03a57d..640812cb2152f 100644 --- a/sound/ac97/bus.c +++ b/sound/ac97/bus.c @@ -529,7 +529,7 @@ static int ac97_bus_remove(struct device *dev) int ret; ret = pm_runtime_get_sync(dev); - if (ret) + if (ret < 0) return ret; ret = adrv->remove(adev);