diff options
author | Yongqiang Liu <liuyongqiang13@huawei.com> | 2020-07-16 10:58:49 +0200 |
---|---|---|
committer | Sebastian Reichel <sebastian.reichel@collabora.com> | 2020-07-27 00:05:56 +0200 |
commit | 9d832cd36c606e176f06eaf97f0c54b02359d95a (patch) | |
tree | 204d4893e61d7d78e5dba6d3c4c6ae7c9e308207 /drivers/power | |
parent | power: reset: keystone-reset: Replace HTTP links with HTTPS ones (diff) | |
download | linux-9d832cd36c606e176f06eaf97f0c54b02359d95a.tar.xz linux-9d832cd36c606e176f06eaf97f0c54b02359d95a.zip |
power: Convert to DEFINE_SHOW_ATTRIBUTE
Use DEFINE_SHOW_ATTRIBUTE macro to simplify the code.
Signed-off-by: Yongqiang Liu <liuyongqiang13@huawei.com>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Diffstat (limited to 'drivers/power')
-rw-r--r-- | drivers/power/supply/da9030_battery.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/drivers/power/supply/da9030_battery.c b/drivers/power/supply/da9030_battery.c index 88582423b87d..0deba48d22d3 100644 --- a/drivers/power/supply/da9030_battery.c +++ b/drivers/power/supply/da9030_battery.c @@ -172,17 +172,7 @@ static int bat_debug_show(struct seq_file *s, void *data) return 0; } -static int debug_open(struct inode *inode, struct file *file) -{ - return single_open(file, bat_debug_show, inode->i_private); -} - -static const struct file_operations bat_debug_fops = { - .open = debug_open, - .read = seq_read, - .llseek = seq_lseek, - .release = single_release, -}; +DEFINE_SHOW_ATTRIBUTE(bat_debug); static struct dentry *da9030_bat_create_debugfs(struct da9030_charger *charger) { |