Commit 1d74e7ed authored by Bjorn Andersson's avatar Bjorn Andersson

rpmsg: qcom_smd: Correct return value for O_NONBLOCK

qcom_smd_send() should return -EAGAIN for non-blocking channels with
insufficient space, so that we can propagate this event to user space.

Fixes: 53e2822e ("rpmsg: Introduce Qualcomm SMD backend")
Signed-off-by: default avatarBjorn Andersson <bjorn.andersson@linaro.org>
parent 2c8a5708
...@@ -739,7 +739,7 @@ static int __qcom_smd_send(struct qcom_smd_channel *channel, const void *data, ...@@ -739,7 +739,7 @@ static int __qcom_smd_send(struct qcom_smd_channel *channel, const void *data,
while (qcom_smd_get_tx_avail(channel) < tlen) { while (qcom_smd_get_tx_avail(channel) < tlen) {
if (!wait) { if (!wait) {
ret = -ENOMEM; ret = -EAGAIN;
goto out; goto out;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment