[PATCH] misc: ibmvsm: Fix wrong assignment of return code

From: Bryant G. Ly
Date: Mon Aug 06 2018 - 09:31:11 EST


From: "Bryant G. Ly" <bryantly@xxxxxxxxxxxxx>

Currently the assignment is flipped and rc is always 0.

Signed-off-by: Bryant G. Ly <bryantly@xxxxxxxxxxxxx>
Reviewed-by: Bradley Warrum <bwarrum@xxxxxxxxxx>
---
drivers/misc/ibmvmc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/misc/ibmvmc.c b/drivers/misc/ibmvmc.c
index 8f82bb9..b8aaa68 100644
--- a/drivers/misc/ibmvmc.c
+++ b/drivers/misc/ibmvmc.c
@@ -2131,7 +2131,7 @@ static int ibmvmc_init_crq_queue(struct crq_server_adapter *adapter)
retrc = plpar_hcall_norets(H_REG_CRQ,
vdev->unit_address,
queue->msg_token, PAGE_SIZE);
- retrc = rc;
+ rc = retrc;

if (rc == H_RESOURCE)
rc = ibmvmc_reset_crq_queue(adapter);
--
2.7.2