diff options
author | Alexey Korolev <akorolev@infradead.org> | 2008-08-20 17:32:08 -0400 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2008-08-20 17:35:40 -0400 |
commit | 17c1d2be28e485c0c8b09661db39d5bf2605069d (patch) | |
tree | 204dff58a9cba311bb9645d15b32e40476355676 /drivers/mtd/nand/nand_ecc.c | |
parent | 1077be58ad7baadd86e47e8b4f6209fa5b6364a5 (diff) |
[MTD] [NAND] Fix missing kernel-doc
[Reported by Randy Dunlap]
Signed-off-by: Alexey Korolev <akorolev@infradead.org>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd/nand/nand_ecc.c')
-rw-r--r-- | drivers/mtd/nand/nand_ecc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/mtd/nand/nand_ecc.c b/drivers/mtd/nand/nand_ecc.c index d99e569e999f..fd19787c9ce7 100644 --- a/drivers/mtd/nand/nand_ecc.c +++ b/drivers/mtd/nand/nand_ecc.c | |||
@@ -150,8 +150,8 @@ static const char addressbits[256] = { | |||
150 | /** | 150 | /** |
151 | * nand_calculate_ecc - [NAND Interface] Calculate 3-byte ECC for 256-byte block | 151 | * nand_calculate_ecc - [NAND Interface] Calculate 3-byte ECC for 256-byte block |
152 | * @mtd: MTD block structure (unused) | 152 | * @mtd: MTD block structure (unused) |
153 | * @dat: raw data | 153 | * @buf: input buffer with raw data |
154 | * @ecc_code: buffer for ECC | 154 | * @code: output buffer with ECC |
155 | */ | 155 | */ |
156 | int nand_calculate_ecc(struct mtd_info *mtd, const unsigned char *buf, | 156 | int nand_calculate_ecc(struct mtd_info *mtd, const unsigned char *buf, |
157 | unsigned char *code) | 157 | unsigned char *code) |
@@ -390,7 +390,7 @@ EXPORT_SYMBOL(nand_calculate_ecc); | |||
390 | /** | 390 | /** |
391 | * nand_correct_data - [NAND Interface] Detect and correct bit error(s) | 391 | * nand_correct_data - [NAND Interface] Detect and correct bit error(s) |
392 | * @mtd: MTD block structure (unused) | 392 | * @mtd: MTD block structure (unused) |
393 | * @dat: raw data read from the chip | 393 | * @buf: raw data read from the chip |
394 | * @read_ecc: ECC from the chip | 394 | * @read_ecc: ECC from the chip |
395 | * @calc_ecc: the ECC calculated from raw data | 395 | * @calc_ecc: the ECC calculated from raw data |
396 | * | 396 | * |