U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] include: extension_board: Increase overlay file name size
@ 2024-05-22  7:21 Daniel Schultz
  2024-05-22  8:04 ` Kory Maincent
  2024-06-07 22:03 ` Tom Rini
  0 siblings, 2 replies; 3+ messages in thread
From: Daniel Schultz @ 2024-05-22  7:21 UTC (permalink / raw)
  To: u-boot, upstream, kory.maincent, trini; +Cc: Daniel Schultz

Upstream overlays like the ARM64 TI
k3-am625-beagleplay-csi2-tevi-ov5640.dtso can easily have more then
32 characters. Increase the overlay length to 64 characters to
apply overlays with longer names.

Signed-off-by: Daniel Schultz <d.schultz@phytec.de>
---
 include/extension_board.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/extension_board.h b/include/extension_board.h
index 87d404c0074..22e4104bc54 100644
--- a/include/extension_board.h
+++ b/include/extension_board.h
@@ -14,7 +14,7 @@ struct extension {
 	char name[32];
 	char owner[32];
 	char version[32];
-	char overlay[32];
+	char overlay[64];
 	char other[32];
 };
 
-- 
2.25.1


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

end of thread, other threads:[~2024-06-07 22:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-22  7:21 [PATCH] include: extension_board: Increase overlay file name size Daniel Schultz
2024-05-22  8:04 ` Kory Maincent
2024-06-07 22:03 ` Tom Rini

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