msm: sensor: Add mutex lock during ois power down operations
Protecting operations performed during ois powerdown from race condition by adding mutex locks. CRs-Fixed: 2081806 Change-Id: I8a918dc306e639d50a896c8d77f8eb7a72fcb195 Signed-off-by: Rahul Sharma <sharah@codeaurora.org>
This commit is contained in:
parent
2d7191e18b
commit
d16420b459
1 changed files with 2 additions and 0 deletions
|
@ -623,11 +623,13 @@ static long msm_ois_subdev_ioctl(struct v4l2_subdev *sd,
|
||||||
pr_err("o_ctrl->i2c_client.i2c_func_tbl NULL\n");
|
pr_err("o_ctrl->i2c_client.i2c_func_tbl NULL\n");
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
mutex_lock(o_ctrl->ois_mutex);
|
||||||
rc = msm_ois_power_down(o_ctrl);
|
rc = msm_ois_power_down(o_ctrl);
|
||||||
if (rc < 0) {
|
if (rc < 0) {
|
||||||
pr_err("%s:%d OIS Power down failed\n",
|
pr_err("%s:%d OIS Power down failed\n",
|
||||||
__func__, __LINE__);
|
__func__, __LINE__);
|
||||||
}
|
}
|
||||||
|
mutex_unlock(o_ctrl->ois_mutex);
|
||||||
return msm_ois_close(sd, NULL);
|
return msm_ois_close(sd, NULL);
|
||||||
default:
|
default:
|
||||||
return -ENOIOCTLCMD;
|
return -ENOIOCTLCMD;
|
||||||
|
|
Loading…
Add table
Reference in a new issue