diff options
author | Timo Lindhorst <lindhors@vnet.ibm.com> | 2006-11-27 07:35:49 -0500 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2006-11-28 19:11:39 -0500 |
commit | fc029194999a4563d356cdf728e0c44fb7a49105 (patch) | |
tree | 34516226c1a9659fafa9dceb5e7f42313ef7cf5d /drivers | |
parent | 28bdd4a72d158083b7c7f56ec4ef5dfaf75d9464 (diff) |
[MTD] [NAND] fix ifdef option in nand_ecc.c
Fix up the config option in the #ifdef statements in nand_ecc.c
Signed-off-by: Timo Lindhorst <lindhors@linux.vnet.ibm.com>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mtd/nand/nand_ecc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/nand/nand_ecc.c b/drivers/mtd/nand/nand_ecc.c index dd438ca47d9a..fde593e5e634 100644 --- a/drivers/mtd/nand/nand_ecc.c +++ b/drivers/mtd/nand/nand_ecc.c | |||
@@ -112,7 +112,7 @@ int nand_calculate_ecc(struct mtd_info *mtd, const u_char *dat, | |||
112 | tmp2 |= (reg2 & 0x01) << 0; /* B7 -> B0 */ | 112 | tmp2 |= (reg2 & 0x01) << 0; /* B7 -> B0 */ |
113 | 113 | ||
114 | /* Calculate final ECC code */ | 114 | /* Calculate final ECC code */ |
115 | #ifdef CONFIG_NAND_ECC_SMC | 115 | #ifdef CONFIG_MTD_NAND_ECC_SMC |
116 | ecc_code[0] = ~tmp2; | 116 | ecc_code[0] = ~tmp2; |
117 | ecc_code[1] = ~tmp1; | 117 | ecc_code[1] = ~tmp1; |
118 | #else | 118 | #else |
@@ -148,7 +148,7 @@ int nand_correct_data(struct mtd_info *mtd, u_char *dat, | |||
148 | { | 148 | { |
149 | uint8_t s0, s1, s2; | 149 | uint8_t s0, s1, s2; |
150 | 150 | ||
151 | #ifdef CONFIG_NAND_ECC_SMC | 151 | #ifdef CONFIG_MTD_NAND_ECC_SMC |
152 | s0 = calc_ecc[0] ^ read_ecc[0]; | 152 | s0 = calc_ecc[0] ^ read_ecc[0]; |
153 | s1 = calc_ecc[1] ^ read_ecc[1]; | 153 | s1 = calc_ecc[1] ^ read_ecc[1]; |
154 | s2 = calc_ecc[2] ^ read_ecc[2]; | 154 | s2 = calc_ecc[2] ^ read_ecc[2]; |