Commit 54300bfd authored by dingsenjie's avatar dingsenjie Committed by Martin K. Petersen

scsi: snic: Convert to DEFINE_SHOW_ATTRIBUTE()

Use DEFINE_SHOW_ATTRIBUTE() macro to simplify the code.

Link: https://lore.kernel.org/r/20210331065326.18804-1-dingsenjie@163.comSigned-off-by: default avatardingsenjie <dingsenjie@yulong.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent 790f9a48
...@@ -334,25 +334,7 @@ snic_stats_show(struct seq_file *sfp, void *data) ...@@ -334,25 +334,7 @@ snic_stats_show(struct seq_file *sfp, void *data)
return 0; return 0;
} }
/* DEFINE_SHOW_ATTRIBUTE(snic_stats);
* snic_stats_open - Open the stats file for specific host
*
* Description:
* This routine opens a debugfs file stats of specific host
*/
static int
snic_stats_open(struct inode *inode, struct file *filp)
{
return single_open(filp, snic_stats_show, inode->i_private);
}
static const struct file_operations snic_stats_fops = {
.owner = THIS_MODULE,
.open = snic_stats_open,
.read = seq_read,
.llseek = seq_lseek,
.release = single_release,
};
static const struct file_operations snic_reset_stats_fops = { static const struct file_operations snic_reset_stats_fops = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment