diff options
author | Akinobu Mita <akinobu.mita@gmail.com> | 2013-08-15 17:55:09 +0400 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2013-08-31 00:36:06 +0400 |
commit | 8a9f4aa3ac7560efcb242b3d1a31b1d804106f12 (patch) | |
tree | ac105da51b1987e3b6894fb6b1bd73a6765c3ca3 /drivers/mtd/tests/stresstest.c | |
parent | abc173ad84e50645f9136ea56afa9f86c98bf349 (diff) | |
download | linux-8a9f4aa3ac7560efcb242b3d1a31b1d804106f12.tar.xz |
mtd: tests: incorporate error message for mtdtest_write()
All callers of mtdtest_write() print the same error message on failure.
This incorporates the error message to mtdtest_write() and removes them
from the callers.
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd/tests/stresstest.c')
-rw-r--r-- | drivers/mtd/tests/stresstest.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/mtd/tests/stresstest.c b/drivers/mtd/tests/stresstest.c index 6c9e23f40cbc..c9d42cc2df1b 100644 --- a/drivers/mtd/tests/stresstest.c +++ b/drivers/mtd/tests/stresstest.c @@ -126,11 +126,8 @@ static int do_write(void) } addr = eb * mtd->erasesize + offs; err = mtdtest_write(mtd, addr, len, writebuf); - if (unlikely(err)) { - pr_err("error: write failed at 0x%llx\n", - (long long)addr); + if (unlikely(err)) return err; - } offs += len; while (offs > mtd->erasesize) { offsets[eb++] = mtd->erasesize; |