aboutsummaryrefslogtreecommitdiff
path: root/include/extension_board.h
diff options
context:
space:
mode:
authorDaniel Schultz2024-05-22 00:21:00 -0700
committerTom Rini2024-06-07 14:05:03 -0600
commit38cf6819ca32d61f495c574a5695ee5e0cedc16d (patch)
treefd7672104436389b5ee2058b7e3512da755bbc3a /include/extension_board.h
parent0329779bfb911221c056e50710773731619b0310 (diff)
include: extension_board: Increase overlay file name size
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> Acked-by: Kory Maincent <kory.maincent@bootlin.com>
Diffstat (limited to 'include/extension_board.h')
-rw-r--r--include/extension_board.h2
1 files changed, 1 insertions, 1 deletions
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];
};