Re: [PATCH] usb: yurex: fixed sparse warning of incorrect type

From: Sudip Mukherjee
Date: Mon Nov 03 2014 - 04:50:28 EST


On Fri, Oct 10, 2014 at 06:19:45PM +0530, Sudip Mukherjee wrote:
> fixed sparse warning of
> 1) incorrect type (different address spaces)
> 2) incorrect type in initializer
>
> Signed-off-by: Sudip Mukherjee <sudip@xxxxxxxxxxxxxxx>
> ---
> drivers/usb/misc/yurex.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/usb/misc/yurex.c b/drivers/usb/misc/yurex.c
> index c3a45da..343fa6f 100644
> --- a/drivers/usb/misc/yurex.c
> +++ b/drivers/usb/misc/yurex.c
> @@ -410,7 +410,8 @@ static int yurex_release(struct inode *inode, struct file *file)
> return 0;
> }
>
> -static ssize_t yurex_read(struct file *file, char *buffer, size_t count, loff_t *ppos)
> +static ssize_t yurex_read(struct file *file, char __user *buffer, size_t count,
> + loff_t *ppos)
> {
> struct usb_yurex *dev;
> int retval = 0;
> @@ -444,7 +445,8 @@ exit:
> return retval;
> }
>
> -static ssize_t yurex_write(struct file *file, const char *user_buffer, size_t count, loff_t *ppos)
> +static ssize_t yurex_write(struct file *file, const char __user *user_buffer,
> + size_t count, loff_t *ppos)
> {
> struct usb_yurex *dev;
> int i, set = 0, retval = 0;
> --
> 1.8.1.2
>
gentle ping

thanks
sudip
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/