Browse Source

Merge "dsp: increase afe apr_send_pkt timeout to 2 seconds"

Linux Build Service Account 6 years ago
parent
commit
563b443fcd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dsp/q6afe.c

+ 1 - 1
dsp/q6afe.c

@@ -851,7 +851,7 @@ static int afe_apr_send_pkt(void *data, wait_queue_head_t *wait)
 		if (wait) {
 			ret = wait_event_timeout(*wait,
 					(atomic_read(&this_afe.state) == 0),
-					msecs_to_jiffies(TIMEOUT_MS));
+					msecs_to_jiffies(2 * TIMEOUT_MS));
 			if (!ret) {
 				ret = -ETIMEDOUT;
 			} else if (atomic_read(&this_afe.status) > 0) {