diff options
author | Jesper Nilsson <jesper.nilsson@axis.com> | 2007-11-14 17:00:47 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-11-14 18:45:44 -0800 |
commit | b956947106c788a3f2ce0375af930b4cbf7454d5 (patch) | |
tree | 6aa89716ff4fbb5b91677bce9d157abaff7938a7 /include | |
parent | d297a5d576d549d97dce456ba4bd01e5a47e899c (diff) | |
download | linux-stable-b956947106c788a3f2ce0375af930b4cbf7454d5.tar.gz linux-stable-b956947106c788a3f2ce0375af930b4cbf7454d5.tar.bz2 linux-stable-b956947106c788a3f2ce0375af930b4cbf7454d5.zip |
cris build fixes: fix csum_tcpudp_magic() declaration
Remove int from prototype, no longer needed and causes compile error.
Signed-off-by: Jesper Nilsson <jesper.nilsson@axis.com>
Acked-by: Mikael Starvik <starvik@axis.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-cris/checksum.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-cris/checksum.h b/include/asm-cris/checksum.h index 180dbf2757b0..c6c5be62c698 100644 --- a/include/asm-cris/checksum.h +++ b/include/asm-cris/checksum.h @@ -62,7 +62,7 @@ static inline __sum16 ip_fast_csum(const void *iph, unsigned int ihl) * returns a 16-bit checksum, already complemented */ -static inline __sum16 int csum_tcpudp_magic(__be32 saddr, __be32 daddr, +static inline __sum16 csum_tcpudp_magic(__be32 saddr, __be32 daddr, unsigned short len, unsigned short proto, __wsum sum) |