* [PATCH] powercap: dtpm: Fix format string issues in log messages
@ 2025-12-19 18:45 Sumeet Pawnikar
2026-01-07 20:54 ` Rafael J. Wysocki
0 siblings, 1 reply; 2+ messages in thread
From: Sumeet Pawnikar @ 2025-12-19 18:45 UTC (permalink / raw)
To: daniel.lezcano, rafael, linux-pm; +Cc: linux-kernel, sumeet4linux
Fix few format string issues in dtpm.c file,
- Extra trailing comma and space in the debug message "Registered
dtpm node '%s' / %llu-%llu uW, \n". This unnecessary trailing ", "
before the newline character, resulting an illusion of some more
message available for this under debug output.
- Incorrect log level for subsystem initialization failure message.
There is an error condition, not informational, and should be logged
at error level for consistency with other failure mssages. Changed
pr_info() to pr_err() for this subsystem initialization failure
message.
- The same error message "Failed to initialize '%s': %d" has missing
a trailing newline, which could cause log messages to be concatenated
incorrectly, making the logs harder to read.
These isseus affect log readability and consistency but do not impact
any functionality.
Signed-off-by: Sumeet Pawnikar <sumeet4linux@gmail.com>
---
drivers/powercap/dtpm.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/powercap/dtpm.c b/drivers/powercap/dtpm.c
index 129d55bc705c..2179f5c0fbbe 100644
--- a/drivers/powercap/dtpm.c
+++ b/drivers/powercap/dtpm.c
@@ -406,7 +406,7 @@ int dtpm_register(const char *name, struct dtpm *dtpm, struct dtpm *parent)
dtpm->power_limit = dtpm->power_max;
}
- pr_debug("Registered dtpm node '%s' / %llu-%llu uW, \n",
+ pr_debug("Registered dtpm node '%s' / %llu-%llu uW\n",
dtpm->zone.name, dtpm->power_min, dtpm->power_max);
return 0;
@@ -582,7 +582,7 @@ int dtpm_create_hierarchy(struct of_device_id *dtpm_match_table)
ret = dtpm_subsys[i]->init();
if (ret)
- pr_info("Failed to initialize '%s': %d",
+ pr_err("Failed to initialize '%s': %d\n",
dtpm_subsys[i]->name, ret);
}
--
2.43.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] powercap: dtpm: Fix format string issues in log messages
2025-12-19 18:45 [PATCH] powercap: dtpm: Fix format string issues in log messages Sumeet Pawnikar
@ 2026-01-07 20:54 ` Rafael J. Wysocki
0 siblings, 0 replies; 2+ messages in thread
From: Rafael J. Wysocki @ 2026-01-07 20:54 UTC (permalink / raw)
To: Sumeet Pawnikar; +Cc: daniel.lezcano, rafael, linux-pm, linux-kernel
On Fri, Dec 19, 2025 at 7:45 PM Sumeet Pawnikar <sumeet4linux@gmail.com> wrote:
>
> Fix few format string issues in dtpm.c file,
> - Extra trailing comma and space in the debug message "Registered
> dtpm node '%s' / %llu-%llu uW, \n". This unnecessary trailing ", "
> before the newline character, resulting an illusion of some more
> message available for this under debug output.
>
> - Incorrect log level for subsystem initialization failure message.
> There is an error condition, not informational, and should be logged
> at error level for consistency with other failure mssages. Changed
> pr_info() to pr_err() for this subsystem initialization failure
> message.
Please leave it as is.
Error-level messages in the kernel log are only useful if the
user/admin of the system can do something about them, but this doesn't
seem to be the case here.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-01-07 20:54 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-19 18:45 [PATCH] powercap: dtpm: Fix format string issues in log messages Sumeet Pawnikar
2026-01-07 20:54 ` Rafael J. Wysocki
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox