diff options
author | Daniel Schultz | 2024-05-22 00:21:00 -0700 |
---|---|---|
committer | Tom Rini | 2024-06-07 14:05:03 -0600 |
commit | 38cf6819ca32d61f495c574a5695ee5e0cedc16d (patch) | |
tree | fd7672104436389b5ee2058b7e3512da755bbc3a /include/extension_board.h | |
parent | 0329779bfb911221c056e50710773731619b0310 (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.h | 2 |
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]; }; |