RE: [PATCH] mei: remove dev_err message on an unsupported ioctl

2018-02-28 Thread Winkler, Tomas
> > On Tue, Feb 27, 2018 at 09:44:41PM +, Winkler, Tomas wrote: > > > > > > On Tue, Feb 27, 2018 at 05:26:22PM +, Winkler, Tomas wrote: > > > > > > > > > > From: Colin Ian King > > > > > > > > > > Currently the driver spams the kernel log on unsupported ioctls >

RE: [PATCH] mei: remove dev_err message on an unsupported ioctl

2018-02-28 Thread Winkler, Tomas
> > On Tue, Feb 27, 2018 at 09:44:41PM +, Winkler, Tomas wrote: > > > > > > On Tue, Feb 27, 2018 at 05:26:22PM +, Winkler, Tomas wrote: > > > > > > > > > > From: Colin Ian King > > > > > > > > > > Currently the driver spams the kernel log on unsupported ioctls > > > > > which is

Re: [PATCH] mei: remove dev_err message on an unsupported ioctl

2018-02-28 Thread Greg Kroah-Hartman
On Tue, Feb 27, 2018 at 09:44:41PM +, Winkler, Tomas wrote: > > > > On Tue, Feb 27, 2018 at 05:26:22PM +, Winkler, Tomas wrote: > > > > > > > > From: Colin Ian King > > > > > > > > Currently the driver spams the kernel log on unsupported ioctls > > > > which is

Re: [PATCH] mei: remove dev_err message on an unsupported ioctl

2018-02-28 Thread Greg Kroah-Hartman
On Tue, Feb 27, 2018 at 09:44:41PM +, Winkler, Tomas wrote: > > > > On Tue, Feb 27, 2018 at 05:26:22PM +, Winkler, Tomas wrote: > > > > > > > > From: Colin Ian King > > > > > > > > Currently the driver spams the kernel log on unsupported ioctls > > > > which is unnecessary as the ioctl

RE: [PATCH] mei: remove dev_err message on an unsupported ioctl

2018-02-27 Thread Winkler, Tomas
> On 27/02/18 17:26, Winkler, Tomas wrote: > >> > >> From: Colin Ian King > >> > >> 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

RE: [PATCH] mei: remove dev_err message on an unsupported ioctl

2018-02-27 Thread Winkler, Tomas
> On 27/02/18 17:26, Winkler, Tomas wrote: > >> > >> From: Colin Ian King > >> > >> 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

RE: [PATCH] mei: remove dev_err message on an unsupported ioctl

2018-02-27 Thread Winkler, Tomas
> > On Tue, Feb 27, 2018 at 05:26:22PM +, Winkler, Tomas wrote: > > > > > > From: Colin Ian King > > > > > > Currently the driver spams the kernel log on unsupported ioctls > > > which is unnecessary as the ioctl returns -ENOIOCTLCMD to indicate this > anyway. > > >

RE: [PATCH] mei: remove dev_err message on an unsupported ioctl

2018-02-27 Thread Winkler, Tomas
> > On Tue, Feb 27, 2018 at 05:26:22PM +, Winkler, Tomas wrote: > > > > > > From: Colin Ian King > > > > > > 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

Re: [PATCH] mei: remove dev_err message on an unsupported ioctl

2018-02-27 Thread Greg Kroah-Hartman
On Tue, Feb 27, 2018 at 05:26:22PM +, Winkler, Tomas wrote: > > > > From: Colin Ian King > > > > 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

Re: [PATCH] mei: remove dev_err message on an unsupported ioctl

2018-02-27 Thread Greg Kroah-Hartman
On Tue, Feb 27, 2018 at 05:26:22PM +, Winkler, Tomas wrote: > > > > From: Colin Ian King > > > > 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

Re: [PATCH] mei: remove dev_err message on an unsupported ioctl

2018-02-27 Thread Colin Ian King
On 27/02/18 17:26, Winkler, Tomas wrote: >> >> From: Colin Ian King >> >> 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

Re: [PATCH] mei: remove dev_err message on an unsupported ioctl

2018-02-27 Thread Colin Ian King
On 27/02/18 17:26, Winkler, Tomas wrote: >> >> From: Colin Ian King >> >> 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

RE: [PATCH] mei: remove dev_err message on an unsupported ioctl

2018-02-27 Thread Winkler, Tomas
> > From: Colin Ian King > > 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

RE: [PATCH] mei: remove dev_err message on an unsupported ioctl

2018-02-27 Thread Winkler, Tomas
> > From: Colin Ian King > > 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. > This is rather

[PATCH] mei: remove dev_err message on an unsupported ioctl

2018-02-27 Thread Colin King
From: Colin Ian King 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.

[PATCH] mei: remove dev_err message on an unsupported ioctl

2018-02-27 Thread Colin King
From: Colin Ian King 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