mirror of https://gitee.com/openkylin/linux.git
mmc: dw_mmc: Convert to use DEFINE_SHOW_ATTRIBUTE
Use the newly added macro to simply to the code. Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com> Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
This commit is contained in:
parent
871cfe05f4
commit
64c1412b77
|
@ -147,19 +147,7 @@ static int dw_mci_req_show(struct seq_file *s, void *v)
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
DEFINE_SHOW_ATTRIBUTE(dw_mci_req);
|
||||||
static int dw_mci_req_open(struct inode *inode, struct file *file)
|
|
||||||
{
|
|
||||||
return single_open(file, dw_mci_req_show, inode->i_private);
|
|
||||||
}
|
|
||||||
|
|
||||||
static const struct file_operations dw_mci_req_fops = {
|
|
||||||
.owner = THIS_MODULE,
|
|
||||||
.open = dw_mci_req_open,
|
|
||||||
.read = seq_read,
|
|
||||||
.llseek = seq_lseek,
|
|
||||||
.release = single_release,
|
|
||||||
};
|
|
||||||
|
|
||||||
static int dw_mci_regs_show(struct seq_file *s, void *v)
|
static int dw_mci_regs_show(struct seq_file *s, void *v)
|
||||||
{
|
{
|
||||||
|
@ -178,19 +166,7 @@ static int dw_mci_regs_show(struct seq_file *s, void *v)
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
DEFINE_SHOW_ATTRIBUTE(dw_mci_regs);
|
||||||
static int dw_mci_regs_open(struct inode *inode, struct file *file)
|
|
||||||
{
|
|
||||||
return single_open(file, dw_mci_regs_show, inode->i_private);
|
|
||||||
}
|
|
||||||
|
|
||||||
static const struct file_operations dw_mci_regs_fops = {
|
|
||||||
.owner = THIS_MODULE,
|
|
||||||
.open = dw_mci_regs_open,
|
|
||||||
.read = seq_read,
|
|
||||||
.llseek = seq_lseek,
|
|
||||||
.release = single_release,
|
|
||||||
};
|
|
||||||
|
|
||||||
static void dw_mci_init_debugfs(struct dw_mci_slot *slot)
|
static void dw_mci_init_debugfs(struct dw_mci_slot *slot)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue