summaryrefslogtreecommitdiffstats
path: root/package/mtd/src/crc32.h
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2007-08-20 16:12:24 +0000
committerFelix Fietkau <nbd@openwrt.org>2007-08-20 16:12:24 +0000
commita91350732c308c2f0ea6a73d55b2a3a13771e1c1 (patch)
treef6948c69bb0fc3ae76d98ee217ef2585fd71d381 /package/mtd/src/crc32.h
parent5307d511aa974d2aaca2e7f6402d683077283d84 (diff)
downloadmaster-31e0f0ae-a91350732c308c2f0ea6a73d55b2a3a13771e1c1.tar.gz
master-31e0f0ae-a91350732c308c2f0ea6a73d55b2a3a13771e1c1.tar.bz2
master-31e0f0ae-a91350732c308c2f0ea6a73d55b2a3a13771e1c1.zip
cleanup mtd, implement jffs2write - one step closer to config preserving system upgrades
SVN-Revision: 8444
Diffstat (limited to 'package/mtd/src/crc32.h')
-rw-r--r--package/mtd/src/crc32.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/package/mtd/src/crc32.h b/package/mtd/src/crc32.h
new file mode 100644
index 0000000000..ee3145bc15
--- /dev/null
+++ b/package/mtd/src/crc32.h
@@ -0,0 +1,19 @@
+#ifndef CRC32_H
+#define CRC32_H
+
+#include <stdint.h>
+
+extern const uint32_t crc32_table[256];
+
+/* Return a 32-bit CRC of the contents of the buffer. */
+
+ static inline uint32_t
+crc32(uint32_t val, const void *ss, int len)
+{
+ const unsigned char *s = ss;
+ while (--len >= 0)
+ val = crc32_table[(val ^ *s++) & 0xff] ^ (val >> 8);
+ return val;
+}
+
+#endif