|
@@ -9644,16 +9644,17 @@ int q6asm_get_session_time(struct audio_client *ac, uint64_t *tstamp)
|
|
|
ac->session, mtmx_params.hdr.opcode);
|
|
|
rc = apr_send_pkt(ac->apr, (uint32_t *) &mtmx_params);
|
|
|
if (rc < 0) {
|
|
|
- pr_err("%s: Commmand 0x%x failed %d\n", __func__,
|
|
|
- mtmx_params.hdr.opcode, rc);
|
|
|
- goto fail_cmd;
|
|
|
+ dev_err_ratelimited(ac->dev, "%s: Get Session Time failed %d\n",
|
|
|
+ __func__, rc);
|
|
|
+ return rc;
|
|
|
}
|
|
|
+
|
|
|
rc = wait_event_timeout(ac->time_wait,
|
|
|
(atomic_read(&ac->time_flag) == 0),
|
|
|
msecs_to_jiffies(TIMEOUT_MS));
|
|
|
if (!rc) {
|
|
|
pr_err("%s: timeout in getting session time from DSP\n",
|
|
|
- __func__);
|
|
|
+ __func__);
|
|
|
goto fail_cmd;
|
|
|
}
|
|
|
|