mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
crypto: hisilicon/qm - Convert to DEFINE_SHOW_ATTRIBUTE
Use DEFINE_SHOW_ATTRIBUTE macro to simplify the code. Signed-off-by: Qinglang Miao <miaoqinglang@huawei.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
f464851806
commit
106aaab3fc
1 changed files with 1 additions and 11 deletions
|
@ -1050,17 +1050,7 @@ static int qm_regs_show(struct seq_file *s, void *unused)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static int qm_regs_open(struct inode *inode, struct file *file)
|
||||
{
|
||||
return single_open(file, qm_regs_show, inode->i_private);
|
||||
}
|
||||
|
||||
static const struct file_operations qm_regs_fops = {
|
||||
.owner = THIS_MODULE,
|
||||
.open = qm_regs_open,
|
||||
.read = seq_read,
|
||||
.release = single_release,
|
||||
};
|
||||
DEFINE_SHOW_ATTRIBUTE(qm_regs);
|
||||
|
||||
static ssize_t qm_cmd_read(struct file *filp, char __user *buffer,
|
||||
size_t count, loff_t *pos)
|
||||
|
|
Loading…
Add table
Reference in a new issue