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:
parent
07e78a4fa4
commit
9c4284c6ff
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user