mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
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;
|
return 0;
|
||||||
}
|
}
|
||||||
|
DEFINE_SHOW_ATTRIBUTE(skge_debug);
|
||||||
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,
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Use network device events to create/remove/rename
|
* 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);
|
napi_enable(&hw->napi);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
DEFINE_SHOW_ATTRIBUTE(sky2_debug);
|
||||||
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,
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Use network device events to create/remove/rename
|
* Use network device events to create/remove/rename
|
||||||
|
Loading…
Reference in New Issue
Block a user