[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20190120212326.6kk4tcpzs6ytlvho@earth.universe>
Date: Sun, 20 Jan 2019 22:23:26 +0100
From: Sebastian Reichel <sre@...nel.org>
To: Yangtao Li <tiny.windzz@...il.com>
Cc: hdegoede@...hat.com, wens@...e.org, linux-pm@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH] power: supply: axp288_fuel_gauge: Change to use
DEFINE_SHOW_ATTRIBUTE macro
Hi,
On Thu, Nov 22, 2018 at 09:25:51AM -0500, Yangtao Li wrote:
> Use DEFINE_SHOW_ATTRIBUTE macro to simplify the code.
>
> Signed-off-by: Yangtao Li <tiny.windzz@...il.com>
> ---
Thanks, queued to power-supply-next. Sorry for the delay, I missed
this when I collected patches for the 5.0 kernel.
-- Sebastian
> drivers/power/supply/axp288_fuel_gauge.c | 14 ++------------
> 1 file changed, 2 insertions(+), 12 deletions(-)
>
> diff --git a/drivers/power/supply/axp288_fuel_gauge.c b/drivers/power/supply/axp288_fuel_gauge.c
> index 084c8ba9749d..9ff2461820d8 100644
> --- a/drivers/power/supply/axp288_fuel_gauge.c
> +++ b/drivers/power/supply/axp288_fuel_gauge.c
> @@ -307,22 +307,12 @@ static int fuel_gauge_debug_show(struct seq_file *s, void *data)
> return 0;
> }
>
> -static int debug_open(struct inode *inode, struct file *file)
> -{
> - return single_open(file, fuel_gauge_debug_show, inode->i_private);
> -}
> -
> -static const struct file_operations fg_debug_fops = {
> - .open = debug_open,
> - .read = seq_read,
> - .llseek = seq_lseek,
> - .release = single_release,
> -};
> +DEFINE_SHOW_ATTRIBUTE(fuel_gauge_debug);
>
> static void fuel_gauge_create_debugfs(struct axp288_fg_info *info)
> {
> info->debug_file = debugfs_create_file("fuelgauge", 0666, NULL,
> - info, &fg_debug_fops);
> + info, &fuel_gauge_debug_fops);
> }
>
> static void fuel_gauge_remove_debugfs(struct axp288_fg_info *info)
> --
> 2.17.0
>
Download attachment "signature.asc" of type "application/pgp-signature" (834 bytes)
Powered by blists - more mailing lists