From 278c792b7f793eeb170de3bf2c11957ad4093373 Mon Sep 17 00:00:00 2001 From: charles Date: Sun, 4 Apr 2004 03:47:02 +0000 Subject: [PATCH] *** empty log message *** --- yaffs_ecc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yaffs_ecc.c b/yaffs_ecc.c index 7317d77..fac02e1 100644 --- a/yaffs_ecc.c +++ b/yaffs_ecc.c @@ -29,7 +29,7 @@ // Bit 0 of each entry indicates whether the entry has an odd or even parity, and therefore // this bytes influence on the line parity. -const char *yaffs_ecc_c_version = "$Id: yaffs_ecc.c,v 1.2 2003-05-20 23:20:53 charles Exp $"; +const char *yaffs_ecc_c_version = "$Id: yaffs_ecc.c,v 1.3 2004-04-04 03:47:02 charles Exp $"; #include "yaffs_ecc.h" @@ -112,7 +112,7 @@ void yaffs_ECCCalculate(const unsigned char *data,unsigned char *ecc) if(line_parity_prime & 0x01) t |= 0x01; ecc[0] = ~t; -#if CONFIG_YAFFS_ECC_WRONG_ORDER +#ifdef CONFIG_YAFFS_ECC_WRONG_ORDER // Swap the bytes into the wrong order t = ecc[0]; ecc[0] = ecc[1]; @@ -145,7 +145,7 @@ int yaffs_ECCCorrect(unsigned char *data, unsigned char *read_ecc, const unsigne unsigned byte; unsigned bit; -#if CONFIG_YAFFS_ECC_WRONG_ORDER +#ifdef CONFIG_YAFFS_ECC_WRONG_ORDER // swap the bytes to correct for the wrong order unsigned char t; -- 2.30.2