summaryrefslogtreecommitdiffstats
path: root/linux-2.4.x/fs/jffs2/crc32.h
diff options
context:
space:
mode:
Diffstat (limited to 'linux-2.4.x/fs/jffs2/crc32.h')
-rw-r--r--linux-2.4.x/fs/jffs2/crc32.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/linux-2.4.x/fs/jffs2/crc32.h b/linux-2.4.x/fs/jffs2/crc32.h
index cd8979f..bd09d6a 100644
--- a/linux-2.4.x/fs/jffs2/crc32.h
+++ b/linux-2.4.x/fs/jffs2/crc32.h
@@ -1,16 +1,16 @@
#ifndef CRC32_H
#define CRC32_H
-/* $Id: crc32.h,v 1.3 2001/02/26 14:44:37 dwmw2 Exp $ */
+/* $Id: crc32.h,v 1.5 2005/11/07 11:14:38 gleixner Exp $ */
#include <linux/types.h>
-extern const __u32 crc32_table[256];
+extern const uint32_t crc32_table[256];
/* Return a 32-bit CRC of the contents of the buffer. */
-static inline __u32
-crc32(__u32 val, const void *ss, int len)
+static inline uint32_t
+crc32(uint32_t val, const void *ss, int len)
{
const unsigned char *s = ss;
while (--len >= 0)