mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-08 03:40:35 +09:00
iio: pressure: zpa2326: handle pm_runtime_get_sync failure
commitd88de040e1upstream. Calling pm_runtime_get_sync increments the counter even in case of failure, causing incorrect ref count. Call pm_runtime_put if pm_runtime_get_sync fails. Signed-off-by: Navid Emamdoost <navid.emamdoost@gmail.com> Fixes:03b262f2bb("iio:pressure: initial zpa2326 barometer support") Cc: <Stable@vger.kernel.org> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
6c438c81fc
commit
24c26e80b7
@@ -672,8 +672,10 @@ static int zpa2326_resume(const struct iio_dev *indio_dev)
|
||||
int err;
|
||||
|
||||
err = pm_runtime_get_sync(indio_dev->dev.parent);
|
||||
if (err < 0)
|
||||
if (err < 0) {
|
||||
pm_runtime_put(indio_dev->dev.parent);
|
||||
return err;
|
||||
}
|
||||
|
||||
if (err > 0) {
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user