dect
/
linux-2.6
Archived
13
0
Fork 0

EDAC: Convert to use simple_open()

This removes an open coded simple_open() function and replaces file
operations references to the function with simple_open() instead.

dpatch engine is used to auto generate this patch.
(https://github.com/weiyj/dpatch)

Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: Borislav Petkov <borislav.petkov@amd.com>
This commit is contained in:
Wei Yongjun 2012-10-17 16:32:01 +08:00 committed by Borislav Petkov
parent f35d852e80
commit db7312a295
1 changed files with 1 additions and 7 deletions

View File

@ -846,14 +846,8 @@ static ssize_t edac_fake_inject_write(struct file *file,
return count;
}
static int debugfs_open(struct inode *inode, struct file *file)
{
file->private_data = inode->i_private;
return 0;
}
static const struct file_operations debug_fake_inject_fops = {
.open = debugfs_open,
.open = simple_open,
.write = edac_fake_inject_write,
.llseek = generic_file_llseek,
};