Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 16652a93 authored by Dan Carpenter's avatar Dan Carpenter Committed by Ulf Hansson
Browse files

mmc: mmc_test: Uninitialized return value



We never set "ret" to RESULT_OK.

Fixes: 9f9c4180 ("mmc: mmc_test: add test for non-blocking transfers")
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent 178b0fa0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -832,7 +832,7 @@ static int mmc_test_nonblock_transfer(struct mmc_test_card *test,
	struct mmc_async_req *other_areq = &test_areq[1].areq;
	enum mmc_blk_status status;
	int i;
	int ret;
	int ret = RESULT_OK;

	test_areq[0].test = test;
	test_areq[1].test = test;