Skip to content

Commit

Permalink
scsi: snic: Convert to use DEFINE_SEQ_ATTRIBUTE macro
Browse files Browse the repository at this point in the history
Use DEFINE_SEQ_ATTRIBUTE macro to simplify the code.

Link: https://lore.kernel.org/r/20200916025030.3992991-1-liushixin2@huawei.com
Signed-off-by: Liu Shixin <liushixin2@huawei.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
  • Loading branch information
Liu Shixin authored and Martin K. Petersen committed Oct 3, 2020
1 parent 121432e commit 936dc95
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions drivers/scsi/snic/snic_debugfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -439,26 +439,14 @@ snic_trc_seq_show(struct seq_file *sfp, void *data)
return 0;
}

static const struct seq_operations snic_trc_seq_ops = {
static const struct seq_operations snic_trc_sops = {
.start = snic_trc_seq_start,
.next = snic_trc_seq_next,
.stop = snic_trc_seq_stop,
.show = snic_trc_seq_show,
};

static int
snic_trc_open(struct inode *inode, struct file *filp)
{
return seq_open(filp, &snic_trc_seq_ops);
}

static const struct file_operations snic_trc_fops = {
.owner = THIS_MODULE,
.open = snic_trc_open,
.read = seq_read,
.llseek = seq_lseek,
.release = seq_release,
};
DEFINE_SEQ_ATTRIBUTE(snic_trc);

/*
* snic_trc_debugfs_init : creates trace/tracing_enable files for trace
Expand Down

0 comments on commit 936dc95

Please sign in to comment.