aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ia64/lib/checksum.c
diff options
context:
space:
mode:
authorAl Viro <viro@ftp.linux.org.uk>2007-07-17 03:49:35 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-07-17 14:01:07 -0400
commit547c178b7237f586cbaac0246a112c502de32d64 (patch)
treed65e582ab54d07d99cb8ef7f6c77dcbbc718086d /arch/ia64/lib/checksum.c
parent6d0fd9c9832005b754d7cd04bc8c0ce7ea035366 (diff)
missing exports of csum_...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Acked-by: David S. Miller <davem@davemloft.net> Acked-by: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/ia64/lib/checksum.c')
-rw-r--r--arch/ia64/lib/checksum.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/ia64/lib/checksum.c b/arch/ia64/lib/checksum.c
index 4411d9baeb21..9fc955026f86 100644
--- a/arch/ia64/lib/checksum.c
+++ b/arch/ia64/lib/checksum.c
@@ -60,6 +60,7 @@ csum_tcpudp_nofold (__be32 saddr, __be32 daddr, unsigned short len,
60 result = (result & 0xffffffff) + (result >> 32); 60 result = (result & 0xffffffff) + (result >> 32);
61 return (__force __wsum)result; 61 return (__force __wsum)result;
62} 62}
63EXPORT_SYMBOL(csum_tcpudp_nofold);
63 64
64extern unsigned long do_csum (const unsigned char *, long); 65extern unsigned long do_csum (const unsigned char *, long);
65 66