Pull bugzilla-5452 into release branch
[sfrench/cifs-2.6.git] / arch / x86_64 / kernel / sys_x86_64.c
index cc7821c68851d5334b01359f8dd892a5266fdf0b..6449ea8fe756475b7316bdaa51ddd16e3c2c6dd9 100644 (file)
@@ -154,17 +154,3 @@ asmlinkage long sys_uname(struct new_utsname __user * name)
                err |= copy_to_user(&name->machine, "i686", 5);                 
        return err ? -EFAULT : 0;
 }
-
-asmlinkage long sys_time64(long __user * tloc)
-{
-       struct timeval now; 
-       int i; 
-
-       do_gettimeofday(&now);
-       i = now.tv_sec;
-       if (tloc) {
-               if (put_user(i,tloc))
-                       i = -EFAULT;
-       }
-       return i;
-}