diff mbox series

drivers: base: power: remove wakeup_sources_stats_dentry variable

Message ID 20190618153416.6786-1-gregkh@linuxfoundation.org (mailing list archive)
State Accepted, archived
Delegated to: Rafael Wysocki
Headers show
Series drivers: base: power: remove wakeup_sources_stats_dentry variable | expand

Commit Message

Greg Kroah-Hartman June 18, 2019, 3:34 p.m. UTC
wakeup_sources_stats_dentry is assigned when the debugfs file is
created, but then never used ever again.  So no need for it at all, just
remove it and call debugfs_create_file() on its own.

Cc: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Cc: Pavel Machek <pavel@ucw.cz>
Cc: Len Brown <len.brown@intel.com>
Cc: linux-pm@vger.kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 drivers/base/power/wakeup.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

Comments

Rafael J. Wysocki June 19, 2019, 9:44 a.m. UTC | #1
On Tuesday, June 18, 2019 5:34:16 PM CEST Greg Kroah-Hartman wrote:
> wakeup_sources_stats_dentry is assigned when the debugfs file is
> created, but then never used ever again.  So no need for it at all, just
> remove it and call debugfs_create_file() on its own.
> 
> Cc: "Rafael J. Wysocki" <rjw@rjwysocki.net>
> Cc: Pavel Machek <pavel@ucw.cz>
> Cc: Len Brown <len.brown@intel.com>
> Cc: linux-pm@vger.kernel.org
> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> ---
>  drivers/base/power/wakeup.c | 6 ++----
>  1 file changed, 2 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/base/power/wakeup.c b/drivers/base/power/wakeup.c
> index 5b2b6a05a4f3..ee31d4f8d856 100644
> --- a/drivers/base/power/wakeup.c
> +++ b/drivers/base/power/wakeup.c
> @@ -968,8 +968,6 @@ void pm_wakep_autosleep_enabled(bool set)
>  }
>  #endif /* CONFIG_PM_AUTOSLEEP */
>  
> -static struct dentry *wakeup_sources_stats_dentry;
> -
>  /**
>   * print_wakeup_source_stats - Print wakeup source statistics information.
>   * @m: seq_file to print the statistics into.
> @@ -1099,8 +1097,8 @@ static const struct file_operations wakeup_sources_stats_fops = {
>  
>  static int __init wakeup_sources_debugfs_init(void)
>  {
> -	wakeup_sources_stats_dentry = debugfs_create_file("wakeup_sources",
> -			S_IRUGO, NULL, NULL, &wakeup_sources_stats_fops);
> +	debugfs_create_file("wakeup_sources", S_IRUGO, NULL, NULL,
> +			    &wakeup_sources_stats_fops);
>  	return 0;
>  }
>  
> 

Queued for 5.3, thanks!
diff mbox series

Patch

diff --git a/drivers/base/power/wakeup.c b/drivers/base/power/wakeup.c
index 5b2b6a05a4f3..ee31d4f8d856 100644
--- a/drivers/base/power/wakeup.c
+++ b/drivers/base/power/wakeup.c
@@ -968,8 +968,6 @@  void pm_wakep_autosleep_enabled(bool set)
 }
 #endif /* CONFIG_PM_AUTOSLEEP */
 
-static struct dentry *wakeup_sources_stats_dentry;
-
 /**
  * print_wakeup_source_stats - Print wakeup source statistics information.
  * @m: seq_file to print the statistics into.
@@ -1099,8 +1097,8 @@  static const struct file_operations wakeup_sources_stats_fops = {
 
 static int __init wakeup_sources_debugfs_init(void)
 {
-	wakeup_sources_stats_dentry = debugfs_create_file("wakeup_sources",
-			S_IRUGO, NULL, NULL, &wakeup_sources_stats_fops);
+	debugfs_create_file("wakeup_sources", S_IRUGO, NULL, NULL,
+			    &wakeup_sources_stats_fops);
 	return 0;
 }