projects
/
GitHub
/
mt8127
/
android_kernel_alcatel_ttab.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2ad0a0a
)
[PATCH] pcmcia: documentation fix
author
Jar
<jar@pcuf.fi>
Mon, 27 Jun 2005 23:28:58 +0000
(16:28 -0700)
committer
Linus Torvalds
<torvalds@ppc970.osdl.org>
Tue, 28 Jun 2005 01:03:22 +0000
(18:03 -0700)
Fix example hash generator in Documentation.
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Documentation/pcmcia/devicetable.txt
patch
|
blob
|
blame
|
history
diff --git
a/Documentation/pcmcia/devicetable.txt
b/Documentation/pcmcia/devicetable.txt
index 7225f9eddf9d0c73c2e351a62ca99835d5198cd2..045511acafc98b4f336960ced2a2e4c2ebf8638c 100644
(file)
--- a/
Documentation/pcmcia/devicetable.txt
+++ b/
Documentation/pcmcia/devicetable.txt
@@
-44,7
+44,7
@@
unsigned int crc32(unsigned char const *p, unsigned int len)
{
int i;
unsigned int crc = 0;
- while (len--)
+ while (len--)
{
crc ^= *p++;
for (i = 0; i < 8; i++)
crc = (crc >> 1) ^ ((crc & 1) ? 0xedb88320 : 0);