Loading drivers/soc/qcom/service-locator.c +4 −5 Original line number Diff line number Diff line Loading @@ -149,11 +149,10 @@ static void service_locator_recv_msg(struct work_struct *work) do { pr_debug("Notified about a Receive event\n"); ret = qmi_recv_msg(service_locator.clnt_handle); if (ret < 0) pr_err("Error receiving message rc:%d. Retrying...\n", ret); } while (ret == 0); } while ((ret = qmi_recv_msg(service_locator.clnt_handle)) == 0); if (ret != -ENOMSG) pr_err("Error receiving message rc:%d\n", ret); } Loading Loading
drivers/soc/qcom/service-locator.c +4 −5 Original line number Diff line number Diff line Loading @@ -149,11 +149,10 @@ static void service_locator_recv_msg(struct work_struct *work) do { pr_debug("Notified about a Receive event\n"); ret = qmi_recv_msg(service_locator.clnt_handle); if (ret < 0) pr_err("Error receiving message rc:%d. Retrying...\n", ret); } while (ret == 0); } while ((ret = qmi_recv_msg(service_locator.clnt_handle)) == 0); if (ret != -ENOMSG) pr_err("Error receiving message rc:%d\n", ret); } Loading