From 7530b007cf1af11233acf690f3d02f033f1dccab Mon Sep 17 00:00:00 2001 From: Michal Sojka Date: Fri, 4 Apr 2014 19:25:18 +0200 Subject: [PATCH] cegw: Support 32bit user-space under 64bit kernel --- net/can/canethgw.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net/can/canethgw.c b/net/can/canethgw.c index 6c9c8aae64c7..283d75846a80 100644 --- a/net/can/canethgw.c +++ b/net/can/canethgw.c @@ -366,7 +366,8 @@ static const struct file_operations cegw_fops = { .owner = THIS_MODULE, .open = cegw_open, .release = cegw_release, - .unlocked_ioctl = cegw_ioctl + .unlocked_ioctl = cegw_ioctl, + .compat_ioctl = cegw_ioctl, }; static struct miscdevice cegw_device = { -- 2.39.2