diff options
author | Yangtao Li <tiny.windzz@gmail.com> | 2018-11-30 11:36:17 -0500 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2018-12-07 05:11:10 -0500 |
commit | 0819dc72ea70a90ad2a070e76708ee53bac47caa (patch) | |
tree | c4436ea8e1b44a790c6f905dd3f4b9f05ed24479 /drivers/pinctrl/pinmux.c | |
parent | 4be1eaf322f07bb9694618fd2763a3a1f0a3dd25 (diff) |
pinctrl: Change to use DEFINE_SHOW_ATTRIBUTE macro
Use DEFINE_SHOW_ATTRIBUTE macro to simplify the code.
Signed-off-by: Yangtao Li <tiny.windzz@gmail.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl/pinmux.c')
-rw-r--r-- | drivers/pinctrl/pinmux.c | 29 |
1 files changed, 4 insertions, 25 deletions
diff --git a/drivers/pinctrl/pinmux.c b/drivers/pinctrl/pinmux.c index 5780442c068b..4d0cc1889dd9 100644 --- a/drivers/pinctrl/pinmux.c +++ b/drivers/pinctrl/pinmux.c | |||
@@ -644,37 +644,16 @@ void pinmux_show_setting(struct seq_file *s, | |||
644 | setting->data.mux.func); | 644 | setting->data.mux.func); |
645 | } | 645 | } |
646 | 646 | ||
647 | static int pinmux_functions_open(struct inode *inode, struct file *file) | 647 | DEFINE_SHOW_ATTRIBUTE(pinmux_functions); |
648 | { | 648 | DEFINE_SHOW_ATTRIBUTE(pinmux_pins); |
649 | return single_open(file, pinmux_functions_show, inode->i_private); | ||
650 | } | ||
651 | |||
652 | static int pinmux_pins_open(struct inode *inode, struct file *file) | ||
653 | { | ||
654 | return single_open(file, pinmux_pins_show, inode->i_private); | ||
655 | } | ||
656 | |||
657 | static const struct file_operations pinmux_functions_ops = { | ||
658 | .open = pinmux_functions_open, | ||
659 | .read = seq_read, | ||
660 | .llseek = seq_lseek, | ||
661 | .release = single_release, | ||
662 | }; | ||
663 | |||
664 | static const struct file_operations pinmux_pins_ops = { | ||
665 | .open = pinmux_pins_open, | ||
666 | .read = seq_read, | ||
667 | .llseek = seq_lseek, | ||
668 | .release = single_release, | ||
669 | }; | ||
670 | 649 | ||
671 | void pinmux_init_device_debugfs(struct dentry *devroot, | 650 | void pinmux_init_device_debugfs(struct dentry *devroot, |
672 | struct pinctrl_dev *pctldev) | 651 | struct pinctrl_dev *pctldev) |
673 | { | 652 | { |
674 | debugfs_create_file("pinmux-functions", S_IFREG | S_IRUGO, | 653 | debugfs_create_file("pinmux-functions", S_IFREG | S_IRUGO, |
675 | devroot, pctldev, &pinmux_functions_ops); | 654 | devroot, pctldev, &pinmux_functions_fops); |
676 | debugfs_create_file("pinmux-pins", S_IFREG | S_IRUGO, | 655 | debugfs_create_file("pinmux-pins", S_IFREG | S_IRUGO, |
677 | devroot, pctldev, &pinmux_pins_ops); | 656 | devroot, pctldev, &pinmux_pins_fops); |
678 | } | 657 | } |
679 | 658 | ||
680 | #endif /* CONFIG_DEBUG_FS */ | 659 | #endif /* CONFIG_DEBUG_FS */ |