OSDN Git Service

Staging: lusture: Remove an open coded simple_open() function
authorAbdul Hussain <habdul@visteon.com>
Tue, 16 Jun 2015 07:18:08 +0000 (07:18 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 18 Jun 2015 04:40:54 +0000 (21:40 -0700)
This patch removes an open coded simple_open() function and replace file
operations references to the function with simple_open() instead

Signed-off-by: Abdul Hussain <habdul@visteon.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lustre/fld/lproc_fld.c

index b35ff28..da82210 100644 (file)
@@ -143,13 +143,6 @@ fld_debugfs_cache_flush_write(struct file *file, const char __user *buffer,
 }
 
 static int
-fld_debugfs_cache_flush_open(struct inode *inode, struct file *file)
-{
-       file->private_data = inode->i_private;
-       return 0;
-}
-
-static int
 fld_debugfs_cache_flush_release(struct inode *inode, struct file *file)
 {
        file->private_data = NULL;
@@ -158,7 +151,7 @@ fld_debugfs_cache_flush_release(struct inode *inode, struct file *file)
 
 static struct file_operations fld_debugfs_cache_flush_fops = {
        .owner          = THIS_MODULE,
-       .open           = fld_debugfs_cache_flush_open,
+       .open           = simple_open,
        .write          = fld_debugfs_cache_flush_write,
        .release        = fld_debugfs_cache_flush_release,
 };