net: qrtr: gunyah: Do not print on doorbell EAGAIN

Do not error print on receiving EAGAIN from doorbell APIs since this is
a common case and eventually resolves itself.

Change-Id: I5953abb0474a7dfb3e4040c8e55dbaee832f935f
Signed-off-by: Chris Lew <quic_clew@quicinc.com>
This commit is contained in:
Chris Lew 2023-02-27 11:03:25 -08:00 committed by Gerrit - the friendly Code Review server
parent 07e78a4fa4
commit 9c4284c6ff

View File

@ -104,7 +104,8 @@ static void qrtr_gunyah_kick(struct qrtr_gunyah_dev *qdev)
ret = gh_dbl_send(qdev->tx_dbl, &dbl_mask, GH_DBL_NONBLOCK);
if (ret) {
dev_err(qdev->dev, "failed to raise doorbell %d\n", ret);
if (ret != EAGAIN)
dev_err(qdev->dev, "failed to raise doorbell %d\n", ret);
if (!qdev->master)
schedule_work(&qdev->work);
}