diff options
author | Stefan Roese <sr@denx.de> | 2006-10-12 07:04:24 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2006-10-12 07:05:57 +0200 |
commit | 5c34eee94dfafab27d7d76aa5457458672f7544c (patch) | |
tree | a78d381d2f241769a012866a0a76524c703b92a0 /lib_generic/crc32.c | |
parent | ea237a4d258f269785e984ad031f752536b4eedf (diff) |
Fix JFFS2 compilation problem
Patch by Stefan Roese, 12 Oct 2006
Diffstat (limited to 'lib_generic/crc32.c')
-rw-r--r-- | lib_generic/crc32.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib_generic/crc32.c b/lib_generic/crc32.c index 3db224a3649..3d99b69296c 100644 --- a/lib_generic/crc32.c +++ b/lib_generic/crc32.c @@ -171,8 +171,8 @@ uLong ZEXPORT crc32(crc, buf, len) return crc ^ 0xffffffffL; } -#if ((CONFIG_COMMANDS & CFG_CMD_JFFS2) || (CONFIG_COMMANDS & CFG_CMD_NAND)) \ - && !defined(CFG_NAND_LEGACY) +#if (CONFIG_COMMANDS & CFG_CMD_JFFS2) || \ + ((CONFIG_COMMANDS & CFG_CMD_NAND) && !defined(CFG_NAND_LEGACY)) /* No ones complement version. JFFS2 (and other things ?) * don't use ones compliment in their CRC calculations. |