mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-10 23:20:05 +00:00
usb: yurex: fixed sparse warning of incorrect type
fixed sparse warning of 1) incorrect type (different address spaces) 2) incorrect type in initializer Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
e50a322e51
commit
1cc373c654
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user