mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-23 16:53:58 -05:00
powerpc/ptdump: Use DEFINE_SHOW_ATTRIBUTE()
Use DEFINE_SHOW_ATTRIBUTE() instead of open coding open() and fops. Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://lore.kernel.org/r/b864a92693ca8413ef0b19f0c12065c212899b6e.1625762905.git.christophe.leroy@csgroup.eu
This commit is contained in:
parent
33e1402435
commit
11f27a7fa4
4 changed files with 5 additions and 46 deletions
|
@ -57,7 +57,7 @@ static void bat_show_603(struct seq_file *m, int idx, u32 lower, u32 upper, bool
|
|||
|
||||
#define BAT_SHOW_603(_m, _n, _l, _u, _d) bat_show_603(_m, _n, mfspr(_l), mfspr(_u), _d)
|
||||
|
||||
static int bats_show_603(struct seq_file *m, void *v)
|
||||
static int bats_show(struct seq_file *m, void *v)
|
||||
{
|
||||
seq_puts(m, "---[ Instruction Block Address Translation ]---\n");
|
||||
|
||||
|
@ -88,17 +88,7 @@ static int bats_show_603(struct seq_file *m, void *v)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static int bats_open(struct inode *inode, struct file *file)
|
||||
{
|
||||
return single_open(file, bats_show_603, NULL);
|
||||
}
|
||||
|
||||
static const struct file_operations bats_fops = {
|
||||
.open = bats_open,
|
||||
.read = seq_read,
|
||||
.llseek = seq_lseek,
|
||||
.release = single_release,
|
||||
};
|
||||
DEFINE_SHOW_ATTRIBUTE(bats);
|
||||
|
||||
static int __init bats_init(void)
|
||||
{
|
||||
|
|
|
@ -526,17 +526,7 @@ static int ptdump_show(struct seq_file *m, void *v)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static int ptdump_open(struct inode *inode, struct file *file)
|
||||
{
|
||||
return single_open(file, ptdump_show, NULL);
|
||||
}
|
||||
|
||||
static const struct file_operations ptdump_fops = {
|
||||
.open = ptdump_open,
|
||||
.read = seq_read,
|
||||
.llseek = seq_lseek,
|
||||
.release = single_release,
|
||||
};
|
||||
DEFINE_SHOW_ATTRIBUTE(ptdump);
|
||||
|
||||
static int ptdump_init(void)
|
||||
{
|
||||
|
|
|
@ -397,18 +397,7 @@ static int ptdump_show(struct seq_file *m, void *v)
|
|||
return 0;
|
||||
}
|
||||
|
||||
|
||||
static int ptdump_open(struct inode *inode, struct file *file)
|
||||
{
|
||||
return single_open(file, ptdump_show, NULL);
|
||||
}
|
||||
|
||||
static const struct file_operations ptdump_fops = {
|
||||
.open = ptdump_open,
|
||||
.read = seq_read,
|
||||
.llseek = seq_lseek,
|
||||
.release = single_release,
|
||||
};
|
||||
DEFINE_SHOW_ATTRIBUTE(ptdump);
|
||||
|
||||
static void build_pgtable_complete_mask(void)
|
||||
{
|
||||
|
|
|
@ -41,17 +41,7 @@ static int sr_show(struct seq_file *m, void *v)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static int sr_open(struct inode *inode, struct file *file)
|
||||
{
|
||||
return single_open(file, sr_show, NULL);
|
||||
}
|
||||
|
||||
static const struct file_operations sr_fops = {
|
||||
.open = sr_open,
|
||||
.read = seq_read,
|
||||
.llseek = seq_lseek,
|
||||
.release = single_release,
|
||||
};
|
||||
DEFINE_SHOW_ATTRIBUTE(sr);
|
||||
|
||||
static int __init sr_init(void)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue