From: Colin Ian King Date: Tue, 27 Feb 2018 16:21:05 +0000 (+0000) Subject: mei: remove dev_err message on an unsupported ioctl X-Git-Tag: v4.4.127~25 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2c9a9254cfa7497a81fd2886953160ab3429f336;p=profile%2Fcommon%2Fplatform%2Fkernel%2Flinux-artik7.git mei: remove dev_err message on an unsupported ioctl commit bb0829a741792b56c908d7745bc0b2b540293bcc upstream. Currently the driver spams the kernel log on unsupported ioctls which is unnecessary as the ioctl returns -ENOIOCTLCMD to indicate this anyway. I suspect this was originally for debugging purposes but it really is not required so remove it. Signed-off-by: Colin Ian King Cc: stable Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/misc/mei/main.c b/drivers/misc/mei/main.c index 4ef189a..8c04e34 100644 --- a/drivers/misc/mei/main.c +++ b/drivers/misc/mei/main.c @@ -571,7 +571,6 @@ static long mei_ioctl(struct file *file, unsigned int cmd, unsigned long data) break; default: - dev_err(dev->dev, ": unsupported ioctl %d.\n", cmd); rets = -ENOIOCTLCMD; }