Skip to content

Commit

Permalink
USB: usb-skeleton: Remove unnecessary casts of private_data
Browse files Browse the repository at this point in the history
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Joe Perches authored and Greg Kroah-Hartman committed Aug 10, 2010
1 parent 925ce68 commit e53e841
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/usb/usb-skeleton.c
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ static int skel_release(struct inode *inode, struct file *file)
{
struct usb_skel *dev;

dev = (struct usb_skel *)file->private_data;
dev = file->private_data;
if (dev == NULL)
return -ENODEV;

Expand All @@ -162,7 +162,7 @@ static int skel_flush(struct file *file, fl_owner_t id)
struct usb_skel *dev;
int res;

dev = (struct usb_skel *)file->private_data;
dev = file->private_data;
if (dev == NULL)
return -ENODEV;

Expand Down Expand Up @@ -246,7 +246,7 @@ static ssize_t skel_read(struct file *file, char *buffer, size_t count,
int rv;
bool ongoing_io;

dev = (struct usb_skel *)file->private_data;
dev = file->private_data;

/* if we cannot read at all, return EOF */
if (!dev->bulk_in_urb || !count)
Expand Down Expand Up @@ -401,7 +401,7 @@ static ssize_t skel_write(struct file *file, const char *user_buffer,
char *buf = NULL;
size_t writesize = min(count, (size_t)MAX_TRANSFER);

dev = (struct usb_skel *)file->private_data;
dev = file->private_data;

/* verify that we actually have some data to write */
if (count == 0)
Expand Down

0 comments on commit e53e841

Please sign in to comment.