diff options
author | Yangtao Li <tiny.windzz@gmail.com> | 2018-12-10 10:57:38 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-12-10 12:05:20 -0800 |
commit | a93f5b56962538b85aa0594492aa27d539295d5e (patch) | |
tree | a6fad174fe8e76332b3ac18fdb8cfd8b64078d67 /drivers/net/fjes | |
parent | 5061e3f43b7da28e1fe13c300b66fc5a4f98b0e8 (diff) |
fjes: 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>
Diffstat (limited to 'drivers/net/fjes')
-rw-r--r-- | drivers/net/fjes/fjes_debugfs.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/drivers/net/fjes/fjes_debugfs.c b/drivers/net/fjes/fjes_debugfs.c index 30052ebd52bf..7fed88ea27a5 100644 --- a/drivers/net/fjes/fjes_debugfs.c +++ b/drivers/net/fjes/fjes_debugfs.c @@ -62,19 +62,7 @@ static int fjes_dbg_status_show(struct seq_file *m, void *v) return 0; } - -static int fjes_dbg_status_open(struct inode *inode, struct file *file) -{ - return single_open(file, fjes_dbg_status_show, inode->i_private); -} - -static const struct file_operations fjes_dbg_status_fops = { - .owner = THIS_MODULE, - .open = fjes_dbg_status_open, - .read = seq_read, - .llseek = seq_lseek, - .release = single_release, -}; +DEFINE_SHOW_ATTRIBUTE(fjes_dbg_status); void fjes_dbg_adapter_init(struct fjes_adapter *adapter) { |