Merge "clk: msm: add uninterruptible flag in hab receiving for virtual reset."

This commit is contained in:
Linux Build Service Account 2018-09-08 23:45:06 -07:00 committed by Gerrit - the friendly Code Review server
commit f7d188b0ff

View file

@ -47,8 +47,8 @@ static int virtrc_front_get_clk_id(struct reset_controller_dev *rcdev,
goto err_out;
}
ret = habmm_socket_recv(handle, &rsp, &rsp_size,
UINT_MAX, 0);
ret = habmm_socket_recv(handle, &rsp, &rsp_size, UINT_MAX,
HABMM_SOCKET_RECV_FLAGS_UNINTERRUPTIBLE);
if (ret) {
pr_err("%s: habmm socket receive failed (%d)\n", map->clk_name,
ret);
@ -109,7 +109,8 @@ static int __virtrc_front_reset(struct reset_controller_dev *rcdev,
goto err_out;
}
ret = habmm_socket_recv(handle, &rsp, &rsp_size, UINT_MAX, 0);
ret = habmm_socket_recv(handle, &rsp, &rsp_size, UINT_MAX,
HABMM_SOCKET_RECV_FLAGS_UNINTERRUPTIBLE);
if (ret) {
pr_err("%s: habmm socket receive failed (%d)\n", map->clk_name,
ret);