Commit a9a55243 authored by Jar's avatar Jar Committed by Linus Torvalds

[PATCH] pcmcia: documentation fix

Fix example hash generator in Documentation.
Signed-off-by: default avatarDominik Brodowski <linux@dominikbrodowski.net>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 2ad0a0a7
...@@ -44,7 +44,7 @@ unsigned int crc32(unsigned char const *p, unsigned int len) ...@@ -44,7 +44,7 @@ unsigned int crc32(unsigned char const *p, unsigned int len)
{ {
int i; int i;
unsigned int crc = 0; unsigned int crc = 0;
while (len--) while (len--) {
crc ^= *p++; crc ^= *p++;
for (i = 0; i < 8; i++) for (i = 0; i < 8; i++)
crc = (crc >> 1) ^ ((crc & 1) ? 0xedb88320 : 0); crc = (crc >> 1) ^ ((crc & 1) ? 0xedb88320 : 0);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment