package/mtd: reuse existing crc32 stuff in the trx code
[openwrt-10.03/.git] / package / mtd / src / crc32.h
index ee3145bc1597a05344c694d9bc3ba6639086a36f..68f8ee4febd7cfdb8faa9ad7195a5789ca8e4ee0 100644 (file)
@@ -7,7 +7,7 @@ extern const uint32_t crc32_table[256];
 
 /* Return a 32-bit CRC of the contents of the buffer. */
 
-       static inline uint32_t
+static inline uint32_t
 crc32(uint32_t val, const void *ss, int len)
 {
        const unsigned char *s = ss;
@@ -16,4 +16,11 @@ crc32(uint32_t val, const void *ss, int len)
        return val;
 }
 
+static inline unsigned int crc32buf(char *buf, size_t len)
+{
+       return crc32(0xFFFFFFFF, buf, len);
+}
+
+
+
 #endif