diff options
author | Jörn Engel <joern@logfs.org> | 2007-10-20 23:16:32 +0200 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2007-10-20 22:30:54 +0100 |
commit | eb684507159de2162cd6fc62f2b3a671afd5a61d (patch) | |
tree | 18bdc17456ef9af6ed85f1d08a735d8fe911d852 /lib/reed_solomon/decode_rs.c | |
parent | 1dd7fdb163645f453f5ae55686511b6fcc2314cd (diff) |
[MTD] [NAND] Replace -1 with -EBADMSG in nand error correction code
Magic numerical values are just bad style. Particularly so when
undocumented.
Signed-off-by: Jörn Engel <joern@logfs.org>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'lib/reed_solomon/decode_rs.c')
-rw-r--r-- | lib/reed_solomon/decode_rs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/reed_solomon/decode_rs.c b/lib/reed_solomon/decode_rs.c index 65bc718f0dc..0ec3f257ffd 100644 --- a/lib/reed_solomon/decode_rs.c +++ b/lib/reed_solomon/decode_rs.c @@ -202,7 +202,7 @@ * deg(lambda) unequal to number of roots => uncorrectable * error detected */ - count = -1; + count = -EBADMSG; goto finish; } /* |