mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 14:04:54 +02:00
i2c: img-scb: fix reference leak when pm_runtime_get_sync fails
[ Upstream commit223125e37a] The PM reference count is not expected to be incremented on return in functions img_i2c_xfer and img_i2c_init. However, pm_runtime_get_sync will increment the PM reference count even failed. Forgetting to putting operation will result in a reference leak here. Replace it with pm_runtime_resume_and_get to keep usage counter balanced. Fixes:93222bd9b9("i2c: img-scb: Add runtime PM") Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: Qinglang Miao <miaoqinglang@huawei.com> Signed-off-by: Wolfram Sang <wsa@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
3041051932
commit
e80ae8bde4
|
|
@ -1057,7 +1057,7 @@ static int img_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg *msgs,
|
||||||
atomic = true;
|
atomic = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = pm_runtime_get_sync(adap->dev.parent);
|
ret = pm_runtime_resume_and_get(adap->dev.parent);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
|
@ -1158,7 +1158,7 @@ static int img_i2c_init(struct img_i2c *i2c)
|
||||||
u32 rev;
|
u32 rev;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
ret = pm_runtime_get_sync(i2c->adap.dev.parent);
|
ret = pm_runtime_resume_and_get(i2c->adap.dev.parent);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user