Add generic sys_old_select()
[linux-2.6-block.git] / arch / m68knommu / kernel / sys_m68k.c
index 923dd4aab8758378489d78c91cb11d37151335c8..e0d3f13e77a89dbfb90d23cfff1745fbae0cff41 100644 (file)
@@ -61,22 +61,6 @@ out:
        return error;
 }
 
-struct sel_arg_struct {
-       unsigned long n;
-       fd_set *inp, *outp, *exp;
-       struct timeval *tvp;
-};
-
-asmlinkage int old_select(struct sel_arg_struct *arg)
-{
-       struct sel_arg_struct a;
-
-       if (copy_from_user(&a, arg, sizeof(a)))
-               return -EFAULT;
-       /* sys_select() does the appropriate kernel locking */
-       return sys_select(a.n, a.inp, a.outp, a.exp, a.tvp);
-}
-
 /*
  * sys_ipc() is the de-multiplexer for the SysV IPC calls..
  *