vserver 2.0 rc7
[linux-2.6.git] / include / asm-v850 / uaccess.h
index 7068dfc..4386cfc 100644 (file)
@@ -27,7 +27,8 @@ extern inline int access_ok (int type, const void *addr, unsigned long size)
        return val >= (0x80 + NUM_CPU_IRQS*16) && val < 0xFFFFF000;
 }
 
-extern inline int verify_area (int type, const void *addr, unsigned long size)
+/* this function will go away soon - use access_ok() instead */
+extern inline int __deprecated verify_area (int type, const void *addr, unsigned long size)
 {
        return access_ok (type, addr, size) ? 0 : -EFAULT;
 }