mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 14:41:02 +07:00
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:
parent
b787f68c36
commit
db7c727402
@ -191,9 +191,11 @@ static int __init mtd_readtest_init(void)
|
||||
err = ret;
|
||||
}
|
||||
|
||||
err = mtdtest_relax();
|
||||
if (err)
|
||||
ret = mtdtest_relax();
|
||||
if (ret) {
|
||||
err = ret;
|
||||
goto out;
|
||||
}
|
||||
}
|
||||
|
||||
if (err)
|
||||
|
Loading…
Reference in New Issue
Block a user