diff options
Diffstat (limited to 'include/linux/mtd/nand_ecc.h')
| -rw-r--r-- | include/linux/mtd/nand_ecc.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/include/linux/mtd/nand_ecc.h b/include/linux/mtd/nand_ecc.h index 052ea8ca2434..41bc013571d0 100644 --- a/include/linux/mtd/nand_ecc.h +++ b/include/linux/mtd/nand_ecc.h | |||
| @@ -16,7 +16,13 @@ | |||
| 16 | struct mtd_info; | 16 | struct mtd_info; |
| 17 | 17 | ||
| 18 | /* | 18 | /* |
| 19 | * Calculate 3 byte ECC code for 256 byte block | 19 | * Calculate 3 byte ECC code for eccsize byte block |
| 20 | */ | ||
| 21 | void __nand_calculate_ecc(const u_char *dat, unsigned int eccsize, | ||
| 22 | u_char *ecc_code); | ||
| 23 | |||
| 24 | /* | ||
| 25 | * Calculate 3 byte ECC code for 256/512 byte block | ||
| 20 | */ | 26 | */ |
| 21 | int nand_calculate_ecc(struct mtd_info *mtd, const u_char *dat, u_char *ecc_code); | 27 | int nand_calculate_ecc(struct mtd_info *mtd, const u_char *dat, u_char *ecc_code); |
| 22 | 28 | ||
| @@ -27,7 +33,7 @@ int __nand_correct_data(u_char *dat, u_char *read_ecc, u_char *calc_ecc, | |||
| 27 | unsigned int eccsize); | 33 | unsigned int eccsize); |
| 28 | 34 | ||
| 29 | /* | 35 | /* |
| 30 | * Detect and correct a 1 bit error for 256 byte block | 36 | * Detect and correct a 1 bit error for 256/512 byte block |
| 31 | */ | 37 | */ |
| 32 | int nand_correct_data(struct mtd_info *mtd, u_char *dat, u_char *read_ecc, u_char *calc_ecc); | 38 | int nand_correct_data(struct mtd_info *mtd, u_char *dat, u_char *read_ecc, u_char *calc_ecc); |
| 33 | 39 | ||
