public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH] tools/atmelimage: add const qualifier to fix compiler warning
@ 2026-02-25 15:03 Daniel Golle
  2026-02-25 15:07 ` Tom Rini
  0 siblings, 1 reply; 4+ messages in thread
From: Daniel Golle @ 2026-02-25 15:03 UTC (permalink / raw)
  To: Tom Rini, Daniel Golle, u-boot

tools/atmelimage.c: In function ‘atmel_find_pmecc_parameter_in_token’:
tools/atmelimage.c:64:31: error: assignment discards ‘const’ qualifier from pointer target type [-Werror=discarded-qualifiers]
64 |                         param = strstr(token, "=");
   |                               ^
cc1: all warnings being treated as errors

Add 'const' qualifier to variable 'param' to prevent build failing
due to -Werror.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
---
 tools/atmelimage.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/atmelimage.c b/tools/atmelimage.c
index 6a2d9d8feab..770f7a0de4e 100644
--- a/tools/atmelimage.c
+++ b/tools/atmelimage.c
@@ -55,7 +55,7 @@ static const char * const configs[] = {
 static int atmel_find_pmecc_parameter_in_token(const char *token)
 {
 	size_t pos;
-	char *param;
+	const char *param;
 
 	debug("token: '%s'\n", token);
 
-- 
2.53.0

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-02-25 16:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-25 15:03 [PATCH] tools/atmelimage: add const qualifier to fix compiler warning Daniel Golle
2026-02-25 15:07 ` Tom Rini
2026-02-25 15:14   ` Daniel Golle
2026-02-25 15:50     ` Tom Rini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox