提交 d15ec0b4 编写于 作者: L Lihua Yao 提交者: Takashi Iwai

ALSA: ac97: fix check of pm_runtime_get_sync failure

pm_runtime_get_sync returns negative on failure.

Fixes: 74426fbf ("ALSA: ac97: add an ac97 bus")
Signed-off-by: NLihua Yao <ylhuajnu@163.com>
Acked-by: NRobert Jarzmik <robert.jarzmik@free.fr>
Cc: <stable@vger.kernel.org>
Signed-off-by: NTakashi Iwai <tiwai@suse.de>
上级 c7b81707
......@@ -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);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册