projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
ramips: ramips_esw: add helper function to set VLAN id
[openwrt.git]
/
package
/
mtd
/
src
/
crc32.h
diff --git
a/package/mtd/src/crc32.h
b/package/mtd/src/crc32.h
index
ee3145b
..
68f8ee4
100644
(file)
--- a/
package/mtd/src/crc32.h
+++ b/
package/mtd/src/crc32.h
@@
-7,7
+7,7
@@
extern const uint32_t crc32_table[256];
/* Return a 32-bit CRC of the contents of the buffer. */
/* 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;
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;
}
return val;
}
+static inline unsigned int crc32buf(char *buf, size_t len)
+{
+ return crc32(0xFFFFFFFF, buf, len);
+}
+
+
+
#endif
#endif
This page took
0.023456 seconds
and
4
git commands to generate.