vserver 2.0 rc7
[linux-2.6.git] / include / asm-h8300 / uaccess.h
index f3f4ffe..1480f30 100644 (file)
@@ -24,7 +24,8 @@ static inline int __access_ok(unsigned long addr, unsigned long size)
        return(RANGE_CHECK_OK(addr, size, 0L, (unsigned long)&_ramend));
 }
 
-static inline int verify_area(int type, const void *addr, unsigned long size)
+/* this function will go away soon - use access_ok() instead */
+static inline int __deprecated verify_area(int type, const void *addr, unsigned long size)
 {
        return access_ok(type,addr,size)?0:-EFAULT;
 }