diff mbox series

include: extension_board: Increase overlay file name size

Message ID 20240522072100.602612-1-d.schultz@phytec.de
State Accepted
Delegated to: Tom Rini
Headers show
Series include: extension_board: Increase overlay file name size | expand

Commit Message

Daniel Schultz May 22, 2024, 7:21 a.m. UTC
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(-)

Comments

Tom Rini June 7, 2024, 10:03 p.m. UTC | #1
On Wed, 22 May 2024 00:21:00 -0700, Daniel Schultz wrote:

> 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.
> 
> 

Applied to u-boot/next, thanks!
diff mbox series

Patch

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];
 };