vserver 2.0 rc7
[linux-2.6.git] / include / asm-alpha / uaccess.h
index a656a38..4c39ee7 100644 (file)
@@ -48,7 +48,8 @@
        __access_ok(((unsigned long)(addr)),(size),get_fs());   \
 })
 
-extern inline int verify_area(int type, const void __user * addr, unsigned long size)
+/* this function will go away soon - use access_ok() instead */
+extern inline int __deprecated verify_area(int type, const void __user * addr, unsigned long size)
 {
        return access_ok(type,addr,size) ? 0 : -EFAULT;
 }