]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
fs/seq_file.c: Remove unnecessary casts of private_data
authorJoe Perches <joe@perches.com>
Sun, 5 Sep 2010 01:52:49 +0000 (18:52 -0700)
committerJiri Kosina <jkosina@suse.cz>
Thu, 23 Sep 2010 11:28:23 +0000 (13:28 +0200)
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
fs/seq_file.c

index e1f437be6c3c85c288ca3d3b76c15bf409da0f4c..0e7cb1395a94cfb2c98aad791672576315b88526 100644 (file)
@@ -131,7 +131,7 @@ Eoverflow:
  */
 ssize_t seq_read(struct file *file, char __user *buf, size_t size, loff_t *ppos)
 {
-       struct seq_file *m = (struct seq_file *)file->private_data;
+       struct seq_file *m = file->private_data;
        size_t copied = 0;
        loff_t pos;
        size_t n;
@@ -280,7 +280,7 @@ EXPORT_SYMBOL(seq_read);
  */
 loff_t seq_lseek(struct file *file, loff_t offset, int origin)
 {
-       struct seq_file *m = (struct seq_file *)file->private_data;
+       struct seq_file *m = file->private_data;
        loff_t retval = -EINVAL;
 
        mutex_lock(&m->lock);
@@ -324,7 +324,7 @@ EXPORT_SYMBOL(seq_lseek);
  */
 int seq_release(struct inode *inode, struct file *file)
 {
-       struct seq_file *m = (struct seq_file *)file->private_data;
+       struct seq_file *m = file->private_data;
        kfree(m->buf);
        kfree(m);
        return 0;