Commit a276d6ce authored by Duan Jiong's avatar Duan Jiong Committed by Dave Airlie

DRM: Armada: 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.
Signed-off-by: default avatarDuan Jiong <duanj.fnst@cn.fujitsu.com>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent 0a5a5499
...@@ -95,15 +95,9 @@ static int armada_debugfs_write(struct file *file, const char __user *ptr, ...@@ -95,15 +95,9 @@ static int armada_debugfs_write(struct file *file, const char __user *ptr,
return len; return len;
} }
static int armada_debugfs_reg_w_open(struct inode *inode, struct file *file)
{
file->private_data = inode->i_private;
return 0;
}
static const struct file_operations fops_reg_w = { static const struct file_operations fops_reg_w = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
.open = armada_debugfs_reg_w_open, .open = simple_open,
.write = armada_debugfs_write, .write = armada_debugfs_write,
.llseek = noop_llseek, .llseek = noop_llseek,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment