mtd: readtest: don't clobber error reports

Commit 2a6a28e792 ("mtd: Make MTD tests cancelable") accidentally
clobbered any read failure reports.

Coverity CID #1296020

Signed-off-by: Brian Norris <computersforpeace@gmail.com>
This commit is contained in:
Brian Norris 2015-05-04 11:43:31 -07:00
parent b787f68c36
commit db7c727402

View file

@ -191,10 +191,12 @@ static int __init mtd_readtest_init(void)
err = ret; err = ret;
} }
err = mtdtest_relax(); ret = mtdtest_relax();
if (err) if (ret) {
err = ret;
goto out; goto out;
} }
}
if (err) if (err)
pr_info("finished with errors\n"); pr_info("finished with errors\n");