Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 332727
b: refs/heads/master
c: f45c299
h: refs/heads/master
i:
  332725: d5bc5d2
  332723: 05e4591
  332719: 4f0b917
v: v3
  • Loading branch information
Akinobu Mita authored and David Woodhouse committed Sep 29, 2012
1 parent cafa615 commit ba305be
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0ce0060f103db02edcaa000bbd31cdebcfaa115c
refs/heads/master: f45c2990dc3de65d22e5f3b2f6b5df60a102e493
9 changes: 6 additions & 3 deletions trunk/drivers/mtd/tests/mtd_nandecctest.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,13 @@ static int nand_ecc_test(const size_t size)

static int __init ecc_test_init(void)
{
nand_ecc_test(256);
nand_ecc_test(512);
int err;

return 0;
err = nand_ecc_test(256);
if (err)
return err;

return nand_ecc_test(512);
}

static void __exit ecc_test_exit(void)
Expand Down

0 comments on commit ba305be

Please sign in to comment.