From: Gerd Hoffmann Date: Tue, 11 Sep 2018 13:42:13 +0000 (+0200) Subject: udmabuf: use ENOTTY for invalid ioctls X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=52499d9cdd887843fa37bf8733047fded7e907cb;p=openwrt%2Fstaging%2Fblogic.git udmabuf: use ENOTTY for invalid ioctls Reported-by: Laurent Pinchart Signed-off-by: Gerd Hoffmann Reviewed-by: Laurent Pinchart Acked-by: Daniel Vetter Link: http://patchwork.freedesktop.org/patch/msgid/20180911134216.9760-11-kraxel@redhat.com --- diff --git a/drivers/dma-buf/udmabuf.c b/drivers/dma-buf/udmabuf.c index e0465a9bf3f9..5dd73bc511ba 100644 --- a/drivers/dma-buf/udmabuf.c +++ b/drivers/dma-buf/udmabuf.c @@ -260,7 +260,7 @@ static long udmabuf_ioctl(struct file *filp, unsigned int ioctl, ret = udmabuf_ioctl_create_list(filp, arg); break; default: - ret = -EINVAL; + ret = -ENOTTY; break; } return ret;