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/pinconf.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/pinconf.c')
-rw-r--r-- | drivers/pinctrl/pinconf.c | 29 |
1 files changed, 4 insertions, 25 deletions
diff --git a/drivers/pinctrl/pinconf.c b/drivers/pinctrl/pinconf.c index d3fe14394b73..2c7229380f08 100644 --- a/drivers/pinctrl/pinconf.c +++ b/drivers/pinctrl/pinconf.c | |||
@@ -366,29 +366,8 @@ static int pinconf_groups_show(struct seq_file *s, void *what) | |||
366 | return 0; | 366 | return 0; |
367 | } | 367 | } |
368 | 368 | ||
369 | static int pinconf_pins_open(struct inode *inode, struct file *file) | 369 | DEFINE_SHOW_ATTRIBUTE(pinconf_pins); |
370 | { | 370 | DEFINE_SHOW_ATTRIBUTE(pinconf_groups); |
371 | return single_open(file, pinconf_pins_show, inode->i_private); | ||
372 | } | ||
373 | |||
374 | static int pinconf_groups_open(struct inode *inode, struct file *file) | ||
375 | { | ||
376 | return single_open(file, pinconf_groups_show, inode->i_private); | ||
377 | } | ||
378 | |||
379 | static const struct file_operations pinconf_pins_ops = { | ||
380 | .open = pinconf_pins_open, | ||
381 | .read = seq_read, | ||
382 | .llseek = seq_lseek, | ||
383 | .release = single_release, | ||
384 | }; | ||
385 | |||
386 | static const struct file_operations pinconf_groups_ops = { | ||
387 | .open = pinconf_groups_open, | ||
388 | .read = seq_read, | ||
389 | .llseek = seq_lseek, | ||
390 | .release = single_release, | ||
391 | }; | ||
392 | 371 | ||
393 | #define MAX_NAME_LEN 15 | 372 | #define MAX_NAME_LEN 15 |
394 | 373 | ||
@@ -613,9 +592,9 @@ void pinconf_init_device_debugfs(struct dentry *devroot, | |||
613 | struct pinctrl_dev *pctldev) | 592 | struct pinctrl_dev *pctldev) |
614 | { | 593 | { |
615 | debugfs_create_file("pinconf-pins", S_IFREG | S_IRUGO, | 594 | debugfs_create_file("pinconf-pins", S_IFREG | S_IRUGO, |
616 | devroot, pctldev, &pinconf_pins_ops); | 595 | devroot, pctldev, &pinconf_pins_fops); |
617 | debugfs_create_file("pinconf-groups", S_IFREG | S_IRUGO, | 596 | debugfs_create_file("pinconf-groups", S_IFREG | S_IRUGO, |
618 | devroot, pctldev, &pinconf_groups_ops); | 597 | devroot, pctldev, &pinconf_groups_fops); |
619 | debugfs_create_file("pinconf-config", (S_IRUGO | S_IWUSR | S_IWGRP), | 598 | debugfs_create_file("pinconf-config", (S_IRUGO | S_IWUSR | S_IWGRP), |
620 | devroot, pctldev, &pinconf_dbg_pinconfig_fops); | 599 | devroot, pctldev, &pinconf_dbg_pinconfig_fops); |
621 | } | 600 | } |