diff options
author | Greg Ungerer | 2005-09-12 03:18:10 +0200 |
---|---|---|
committer | Linus Torvalds | 2005-09-12 05:43:46 +0200 |
commit | df28f34bf998795c4d4e08c1604eac0a6d84f502 (patch) | |
tree | 63bba315675d20377935acdd08f580054a9dfc7f /include/asm-m68knommu/checksum.h | |
parent | [PATCH] m68knommu: common ROM/flash based 68360 startup code (diff) | |
download | kernel-qcow2-linux-df28f34bf998795c4d4e08c1604eac0a6d84f502.tar.gz kernel-qcow2-linux-df28f34bf998795c4d4e08c1604eac0a6d84f502.tar.xz kernel-qcow2-linux-df28f34bf998795c4d4e08c1604eac0a6d84f502.zip |
[PATCH] m68knommu: correct prototype args in checksum.h
Bring arg types for csum_partial_copy and csum_paritial_copy_from_user
prototypes into line with their actual implementation.
Signed-off-by: Greg Ungerer <gerg@uclinux.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-m68knommu/checksum.h')
-rw-r--r-- | include/asm-m68knommu/checksum.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/asm-m68knommu/checksum.h b/include/asm-m68knommu/checksum.h index 92cf102c2534..294ec7583ac9 100644 --- a/include/asm-m68knommu/checksum.h +++ b/include/asm-m68knommu/checksum.h @@ -25,7 +25,8 @@ unsigned int csum_partial(const unsigned char * buff, int len, unsigned int sum) * better 64-bit) boundary */ -unsigned int csum_partial_copy(const char *src, char *dst, int len, int sum); +unsigned int csum_partial_copy(const unsigned char *src, unsigned char *dst, + int len, int sum); /* @@ -35,8 +36,8 @@ unsigned int csum_partial_copy(const char *src, char *dst, int len, int sum); * better 64-bit) boundary */ -extern unsigned int csum_partial_copy_from_user(const char *src, char *dst, - int len, int sum, int *csum_err); +extern unsigned int csum_partial_copy_from_user(const unsigned char *src, + unsigned char *dst, int len, int sum, int *csum_err); #define csum_partial_copy_nocheck(src, dst, len, sum) \ csum_partial_copy((src), (dst), (len), (sum)) |