summaryrefslogtreecommitdiff
path: root/include/asm-alpha
diff options
context:
space:
mode:
authorDavid S. Miller <davem@nuts.ninka.net>2002-10-13 23:41:39 -0700
committerDavid S. Miller <davem@nuts.ninka.net>2002-10-13 23:41:39 -0700
commit8f3e372335f7cf242b2d9e4f492456fbfa650f54 (patch)
tree92064aa795a5e4306812b35f3da940b365836377 /include/asm-alpha
parent7b7408bad6a53c7e9695df6133266d2393330a7f (diff)
[NET]: Kill final traces of csum_partial_copy_fromuser.
Diffstat (limited to 'include/asm-alpha')
-rw-r--r--include/asm-alpha/checksum.h10
1 files changed, 2 insertions, 8 deletions
diff --git a/include/asm-alpha/checksum.h b/include/asm-alpha/checksum.h
index 38ca41f3737d..5c1fa2e5bdf3 100644
--- a/include/asm-alpha/checksum.h
+++ b/include/asm-alpha/checksum.h
@@ -42,16 +42,10 @@ extern unsigned int csum_partial(const unsigned char * buff, int len, unsigned i
*
* here even more important to align src and dst on a 32-bit (or even
* better 64-bit) boundary
- */
-unsigned int csum_partial_copy(const char *src, char *dst, int len, unsigned int sum);
-
-/*
- * the same as csum_partial, but copies from user space (but on the alpha
- * we have just one address space, so this is identical to the above)
*
- * this is obsolete and will go away.
+ * this will go away soon.
*/
-#define csum_partial_copy_fromuser csum_partial_copy
+unsigned int csum_partial_copy(const char *src, char *dst, int len, unsigned int sum);
/*
* this is a new version of the above that records errors it finds in *errp,