From: Dan Carpenter Date: Mon, 14 Nov 2016 11:31:34 +0000 (+0300) Subject: mmc: mmc_test: Uninitialized return value X-Git-Tag: v4.14-rc1~1898^2~90 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=16652a936e96f5dae53c3fbd38a570497baadaa8;p=platform%2Fkernel%2Flinux-rpi3.git mmc: mmc_test: Uninitialized return value We never set "ret" to RESULT_OK. Fixes: 9f9c4180f88d ("mmc: mmc_test: add test for non-blocking transfers") Signed-off-by: Dan Carpenter Signed-off-by: Ulf Hansson --- diff --git a/drivers/mmc/card/mmc_test.c b/drivers/mmc/card/mmc_test.c index f61c812..5ba6d77 100644 --- a/drivers/mmc/card/mmc_test.c +++ b/drivers/mmc/card/mmc_test.c @@ -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;