* [PATCH v2] hwmon:(pmbus/ucd9000): Drop unnecessary error check for debugfs_create_dir
@ 2023-05-26 15:49 Osama Muhammad
2023-05-26 21:07 ` Guenter Roeck
0 siblings, 1 reply; 2+ messages in thread
From: Osama Muhammad @ 2023-05-26 15:49 UTC (permalink / raw)
To: linux, jdelvare; +Cc: linux-hwmon, Osama Muhammad
This patch removes the error checking for debugfs_create_dir
in ucd9000.c. This is because the debugfs_create_dir() does not
return NULL but an ERR_PTR after an error.
The DebugFS kernel API is developed in a way that the
caller can safely ignore the errors that occur during
the creation of DebugFS nodes.The debugfs Api handles
it gracefully. The check is unnecessary.
Link to the comment above debugfs_create_dir:
https://elixir.bootlin.com/linux/latest/source/fs/debugfs/inode.c#L565
Signed-off-by: Osama Muhammad <osmtendev@gmail.com>
---
changes since v1
-Added more descriptive commit message.
---
drivers/hwmon/pmbus/ucd9000.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/drivers/hwmon/pmbus/ucd9000.c b/drivers/hwmon/pmbus/ucd9000.c
index 3daaf2237832..73559afa8ba7 100644
--- a/drivers/hwmon/pmbus/ucd9000.c
+++ b/drivers/hwmon/pmbus/ucd9000.c
@@ -512,8 +512,6 @@ static int ucd9000_init_debugfs(struct i2c_client *client,
return -ENOENT;
data->debugfs = debugfs_create_dir(client->name, debugfs);
- if (!data->debugfs)
- return -ENOENT;
/*
* Of the chips this driver supports, only the UCD9090, UCD90160,
--
2.34.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH v2] hwmon:(pmbus/ucd9000): Drop unnecessary error check for debugfs_create_dir
2023-05-26 15:49 [PATCH v2] hwmon:(pmbus/ucd9000): Drop unnecessary error check for debugfs_create_dir Osama Muhammad
@ 2023-05-26 21:07 ` Guenter Roeck
0 siblings, 0 replies; 2+ messages in thread
From: Guenter Roeck @ 2023-05-26 21:07 UTC (permalink / raw)
To: Osama Muhammad; +Cc: jdelvare, linux-hwmon
On Fri, May 26, 2023 at 08:49:06PM +0500, Osama Muhammad wrote:
> This patch removes the error checking for debugfs_create_dir
> in ucd9000.c. This is because the debugfs_create_dir() does not
> return NULL but an ERR_PTR after an error.
> The DebugFS kernel API is developed in a way that the
> caller can safely ignore the errors that occur during
> the creation of DebugFS nodes.The debugfs Api handles
> it gracefully. The check is unnecessary.
>
> Link to the comment above debugfs_create_dir:
> https://elixir.bootlin.com/linux/latest/source/fs/debugfs/inode.c#L565
>
> Signed-off-by: Osama Muhammad <osmtendev@gmail.com>
Applied.
Thanks,
Guenter
> ---
> changes since v1
> -Added more descriptive commit message.
> ---
> drivers/hwmon/pmbus/ucd9000.c | 2 --
> 1 file changed, 2 deletions(-)
>
> diff --git a/drivers/hwmon/pmbus/ucd9000.c b/drivers/hwmon/pmbus/ucd9000.c
> index 3daaf2237832..73559afa8ba7 100644
> --- a/drivers/hwmon/pmbus/ucd9000.c
> +++ b/drivers/hwmon/pmbus/ucd9000.c
> @@ -512,8 +512,6 @@ static int ucd9000_init_debugfs(struct i2c_client *client,
> return -ENOENT;
>
> data->debugfs = debugfs_create_dir(client->name, debugfs);
> - if (!data->debugfs)
> - return -ENOENT;
>
> /*
> * Of the chips this driver supports, only the UCD9090, UCD90160,
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-05-26 21:07 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-26 15:49 [PATCH v2] hwmon:(pmbus/ucd9000): Drop unnecessary error check for debugfs_create_dir Osama Muhammad
2023-05-26 21:07 ` Guenter Roeck
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox