Commit 1733197b authored by Liu Shixin's avatar Liu Shixin Committed by Hans Verkuil

media: aspeed: use DEFINE_SHOW_ATTRIBUTE to simplify code

Use DEFINE_SHOW_ATTRIBUTE helper macro to simplify the code.
No functional change.
Signed-off-by: default avatarLiu Shixin <liushixin2@huawei.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
parent 54be4c5b
...@@ -1753,19 +1753,7 @@ static int aspeed_video_debugfs_show(struct seq_file *s, void *data) ...@@ -1753,19 +1753,7 @@ static int aspeed_video_debugfs_show(struct seq_file *s, void *data)
return 0; return 0;
} }
DEFINE_SHOW_ATTRIBUTE(aspeed_video_debugfs);
static int aspeed_video_proc_open(struct inode *inode, struct file *file)
{
return single_open(file, aspeed_video_debugfs_show, inode->i_private);
}
static const struct file_operations aspeed_video_debugfs_ops = {
.owner = THIS_MODULE,
.open = aspeed_video_proc_open,
.read = seq_read,
.llseek = seq_lseek,
.release = single_release,
};
static struct dentry *debugfs_entry; static struct dentry *debugfs_entry;
...@@ -1779,7 +1767,7 @@ static int aspeed_video_debugfs_create(struct aspeed_video *video) ...@@ -1779,7 +1767,7 @@ static int aspeed_video_debugfs_create(struct aspeed_video *video)
{ {
debugfs_entry = debugfs_create_file(DEVICE_NAME, 0444, NULL, debugfs_entry = debugfs_create_file(DEVICE_NAME, 0444, NULL,
video, video,
&aspeed_video_debugfs_ops); &aspeed_video_debugfs_fops);
if (!debugfs_entry) if (!debugfs_entry)
aspeed_video_debugfs_remove(video); aspeed_video_debugfs_remove(video);
......
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