* [PATCH v3] hwmon:(pmbus/adm1266): Drop unnecessary error check for debugfs_create_dir
@ 2023-05-26 16:39 Osama Muhammad
2023-05-26 21:08 ` Guenter Roeck
0 siblings, 1 reply; 2+ messages in thread
From: Osama Muhammad @ 2023-05-26 16:39 UTC (permalink / raw)
To: linux, jdelvare; +Cc: linux-hwmon, Osama Muhammad
This patch removes the error checking for debugfs_create_dir
in adm1266.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 v2
-Added more descriptive commit message.
changes since v1
-In v1 the IS_ERR was used for error checking which is dropped now.
---
drivers/hwmon/pmbus/adm1266.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/drivers/hwmon/pmbus/adm1266.c b/drivers/hwmon/pmbus/adm1266.c
index 1ac2b2f4c570..184d75269d2b 100644
--- a/drivers/hwmon/pmbus/adm1266.c
+++ b/drivers/hwmon/pmbus/adm1266.c
@@ -340,8 +340,6 @@ static void adm1266_init_debugfs(struct adm1266_data *data)
return;
data->debugfs_dir = debugfs_create_dir(data->client->name, root);
- if (!data->debugfs_dir)
- return;
debugfs_create_devm_seqfile(&data->client->dev, "sequencer_state", data->debugfs_dir,
adm1266_state_read);
--
2.34.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH v3] hwmon:(pmbus/adm1266): Drop unnecessary error check for debugfs_create_dir
2023-05-26 16:39 [PATCH v3] hwmon:(pmbus/adm1266): Drop unnecessary error check for debugfs_create_dir Osama Muhammad
@ 2023-05-26 21:08 ` Guenter Roeck
0 siblings, 0 replies; 2+ messages in thread
From: Guenter Roeck @ 2023-05-26 21:08 UTC (permalink / raw)
To: Osama Muhammad; +Cc: jdelvare, linux-hwmon
On Fri, May 26, 2023 at 09:39:38PM +0500, Osama Muhammad wrote:
> This patch removes the error checking for debugfs_create_dir
> in adm1266.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 v2
> -Added more descriptive commit message.
>
> changes since v1
> -In v1 the IS_ERR was used for error checking which is dropped now.
> ---
> drivers/hwmon/pmbus/adm1266.c | 2 --
> 1 file changed, 2 deletions(-)
>
> diff --git a/drivers/hwmon/pmbus/adm1266.c b/drivers/hwmon/pmbus/adm1266.c
> index 1ac2b2f4c570..184d75269d2b 100644
> --- a/drivers/hwmon/pmbus/adm1266.c
> +++ b/drivers/hwmon/pmbus/adm1266.c
> @@ -340,8 +340,6 @@ static void adm1266_init_debugfs(struct adm1266_data *data)
> return;
>
> data->debugfs_dir = debugfs_create_dir(data->client->name, root);
> - if (!data->debugfs_dir)
> - return;
>
> debugfs_create_devm_seqfile(&data->client->dev, "sequencer_state", data->debugfs_dir,
> adm1266_state_read);
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-05-26 21:08 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-26 16:39 [PATCH v3] hwmon:(pmbus/adm1266): Drop unnecessary error check for debugfs_create_dir Osama Muhammad
2023-05-26 21:08 ` Guenter Roeck
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox