net: marvell: convert to DEFINE_SHOW_ATTRIBUTE
Use DEFINE_SHOW_ATTRIBUTE macro to simplify the code. Signed-off-by: Yangtao Li <tiny.windzz@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
25079154f7
commit
d9bbd6a1a5
|
@ -3732,19 +3732,7 @@ static int skge_debug_show(struct seq_file *seq, void *v)
|
|||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int skge_debug_open(struct inode *inode, struct file *file)
|
||||
{
|
||||
return single_open(file, skge_debug_show, inode->i_private);
|
||||
}
|
||||
|
||||
static const struct file_operations skge_debug_fops = {
|
||||
.owner = THIS_MODULE,
|
||||
.open = skge_debug_open,
|
||||
.read = seq_read,
|
||||
.llseek = seq_lseek,
|
||||
.release = single_release,
|
||||
};
|
||||
DEFINE_SHOW_ATTRIBUTE(skge_debug);
|
||||
|
||||
/*
|
||||
* Use network device events to create/remove/rename
|
||||
|
|
|
@ -4621,19 +4621,7 @@ static int sky2_debug_show(struct seq_file *seq, void *v)
|
|||
napi_enable(&hw->napi);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int sky2_debug_open(struct inode *inode, struct file *file)
|
||||
{
|
||||
return single_open(file, sky2_debug_show, inode->i_private);
|
||||
}
|
||||
|
||||
static const struct file_operations sky2_debug_fops = {
|
||||
.owner = THIS_MODULE,
|
||||
.open = sky2_debug_open,
|
||||
.read = seq_read,
|
||||
.llseek = seq_lseek,
|
||||
.release = single_release,
|
||||
};
|
||||
DEFINE_SHOW_ATTRIBUTE(sky2_debug);
|
||||
|
||||
/*
|
||||
* Use network device events to create/remove/rename
|
||||
|
|
Loading…
Reference in New Issue