diff options
Diffstat (limited to 'drivers/net/tap.c')
| -rw-r--r-- | drivers/net/tap.c | 12 | 
1 files changed, 1 insertions, 11 deletions
diff --git a/drivers/net/tap.c b/drivers/net/tap.c index 3ae70c7e6860..a6d63665ad03 100644 --- a/drivers/net/tap.c +++ b/drivers/net/tap.c @@ -1123,14 +1123,6 @@ static long tap_ioctl(struct file *file, unsigned int cmd,  	}  } -#ifdef CONFIG_COMPAT -static long tap_compat_ioctl(struct file *file, unsigned int cmd, -			     unsigned long arg) -{ -	return tap_ioctl(file, cmd, (unsigned long)compat_ptr(arg)); -} -#endif -  static const struct file_operations tap_fops = {  	.owner		= THIS_MODULE,  	.open		= tap_open, @@ -1140,9 +1132,7 @@ static const struct file_operations tap_fops = {  	.poll		= tap_poll,  	.llseek		= no_llseek,  	.unlocked_ioctl	= tap_ioctl, -#ifdef CONFIG_COMPAT -	.compat_ioctl	= tap_compat_ioctl, -#endif +	.compat_ioctl	= compat_ptr_ioctl,  };  static int tap_get_user_xdp(struct tap_queue *q, struct xdp_buff *xdp)  |