From: Abdul Hussain Date: Tue, 16 Jun 2015 07:18:08 +0000 (+0000) Subject: Staging: lusture: Remove an open coded simple_open() function X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=92a0616a4f37ce520b8011ac0e3638ffa618ff16;p=deliverable%2Flinux.git Staging: lusture: Remove an open coded simple_open() function 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 Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/lustre/lustre/fld/lproc_fld.c b/drivers/staging/lustre/lustre/fld/lproc_fld.c index b35ff288dbd5..da822101e005 100644 --- a/drivers/staging/lustre/lustre/fld/lproc_fld.c +++ b/drivers/staging/lustre/lustre/fld/lproc_fld.c @@ -142,13 +142,6 @@ fld_debugfs_cache_flush_write(struct file *file, const char __user *buffer, return count; } -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) { @@ -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, };