diff options
| author | Daniel Schultz <[email protected]> | 2024-05-22 00:21:00 -0700 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-06-07 14:05:03 -0600 |
| commit | 38cf6819ca32d61f495c574a5695ee5e0cedc16d (patch) | |
| tree | fd7672104436389b5ee2058b7e3512da755bbc3a /include | |
| 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 <[email protected]>
Acked-by: Kory Maincent <[email protected]>
Diffstat (limited to 'include')
| -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]; }; |
