提交 49a6bb7a 编写于 作者: M Mark Brown

regulator: core: Ensure we lock all regulators

The latest workaround for the lockdep interface's not using the second
argument of mutex_lock_nested() changed the loop missed locking the last
regulator due to a thinko with the loop termination condition exiting
one regulator too soon.
Reported-by: NTyler Baker <tyler.baker@linaro.org>
Signed-off-by: NMark Brown <broonie@kernel.org>
上级 bb41897e
...@@ -141,7 +141,7 @@ static void regulator_lock_supply(struct regulator_dev *rdev) ...@@ -141,7 +141,7 @@ static void regulator_lock_supply(struct regulator_dev *rdev)
int i; int i;
mutex_lock(&rdev->mutex); mutex_lock(&rdev->mutex);
for (i = 1; rdev->supply; rdev = rdev->supply->rdev, i++) for (i = 1; rdev; rdev = rdev->supply->rdev, i++)
mutex_lock_nested(&rdev->mutex, i); mutex_lock_nested(&rdev->mutex, i);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册