Przeglądaj źródła

ipc: apr: Handle ssr return code from glink

Glink may receive ssr reset event before audio has received.
Handle the ssr return code from glink as ssr reset event
at apr.

Change-Id: I62058ad56bece93cac52f26446e9c780cba3c633
Signed-off-by: Ramprasad Katkam <[email protected]>
Ramprasad Katkam 6 lat temu
rodzic
commit
b91472bedb
1 zmienionych plików z 6 dodań i 1 usunięć
  1. 6 1
      ipc/apr.c

+ 6 - 1
ipc/apr.c

@@ -419,8 +419,13 @@ int apr_send_pkt(void *handle, uint32_t *buf)
 			rc = -EINVAL;
 		}
 	} else {
-		pr_err("%s: Write APR pkt failed with error %d\n",
+		pr_err_ratelimited("%s: Write APR pkt failed with error %d\n",
 			__func__, rc);
+		if (rc == -ECONNRESET) {
+			pr_err_ratelimited("%s: Received reset error from tal\n",
+					__func__);
+			rc = -ENETRESET;
+		}
 	}
 	spin_unlock_irqrestore(&svc->w_lock, flags);