Skip to content

Commit

Permalink
rpmsg: glink: initialize ret to zero to ensure error status check is …
Browse files Browse the repository at this point in the history
…correct

The new switch cases for RPM_CMD_RX_DONE, RPM_CMD_RX_DONE_W_REUSE,
RPM_CMD_RX_INTENT_REQ_ACK, RPM_CMD_INTENT and RPM_CMD_RX_INTENT_REQ from
4 recent commits are not setting ret and so a later non-zero check on ret
is testing on a garbage value in ret. Fix this by initializing ret to zero.

Detected by CoverityScan CID#1455249 ("Uninitialized scalar variable")

Fixes: 933b45d ("rpmsg: glink: Add support for TX intents)
Fixes: dacbb35 ("glink: Receive and store the remote intent buffers")
Fixes: 27b9c5b ("rpmsg: glink: Request for intents when unavailable")
Fixes: 88c6060 ("rpmsg: glink: Handle remote rx done command")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
  • Loading branch information
Colin Ian King authored and Bjorn Andersson committed Sep 4, 2017
1 parent 906cf29 commit ed43d09
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions drivers/rpmsg/qcom_glink_native.c
Original file line number Diff line number Diff line change
Expand Up @@ -957,7 +957,7 @@ static irqreturn_t qcom_glink_native_intr(int irq, void *data)
unsigned int param2;
unsigned int avail;
unsigned int cmd;
int ret;
int ret = 0;

for (;;) {
avail = qcom_glink_rx_avail(glink);
Expand Down Expand Up @@ -994,8 +994,6 @@ static irqreturn_t qcom_glink_native_intr(int irq, void *data)

mbox_send_message(glink->mbox_chan, NULL);
mbox_client_txdone(glink->mbox_chan, 0);

ret = 0;
break;
case RPM_CMD_INTENT:
qcom_glink_handle_intent(glink, param1, param2, avail);
Expand Down

0 comments on commit ed43d09

Please sign in to comment.