Commit 0f6ddf34 authored by Yangtao Li's avatar Yangtao Li Committed by Paul Mackerras

KVM: PPC: Book3S HV: Change to use DEFINE_SHOW_ATTRIBUTE macro

Use DEFINE_SHOW_ATTRIBUTE macro to simplify the code.
Signed-off-by: default avatarYangtao Li <tiny.windzz@gmail.com>
Signed-off-by: default avatarPaul Mackerras <paulus@ozlabs.org>
parent 234ff0b7
...@@ -1015,17 +1015,7 @@ static int xics_debug_show(struct seq_file *m, void *private) ...@@ -1015,17 +1015,7 @@ static int xics_debug_show(struct seq_file *m, void *private)
return 0; return 0;
} }
static int xics_debug_open(struct inode *inode, struct file *file) DEFINE_SHOW_ATTRIBUTE(xics_debug);
{
return single_open(file, xics_debug_show, inode->i_private);
}
static const struct file_operations xics_debug_fops = {
.open = xics_debug_open,
.read = seq_read,
.llseek = seq_lseek,
.release = single_release,
};
static void xics_debugfs_init(struct kvmppc_xics *xics) static void xics_debugfs_init(struct kvmppc_xics *xics)
{ {
......
...@@ -1968,17 +1968,7 @@ static int xive_debug_show(struct seq_file *m, void *private) ...@@ -1968,17 +1968,7 @@ static int xive_debug_show(struct seq_file *m, void *private)
return 0; return 0;
} }
static int xive_debug_open(struct inode *inode, struct file *file) DEFINE_SHOW_ATTRIBUTE(xive_debug);
{
return single_open(file, xive_debug_show, inode->i_private);
}
static const struct file_operations xive_debug_fops = {
.open = xive_debug_open,
.read = seq_read,
.llseek = seq_lseek,
.release = single_release,
};
static void xive_debugfs_init(struct kvmppc_xive *xive) static void xive_debugfs_init(struct kvmppc_xive *xive)
{ {
......
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