]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
include: extension_board: Increase overlay file name size
authorDaniel Schultz <d.schultz@phytec.de>
Wed, 22 May 2024 07:21:00 +0000 (00:21 -0700)
committerTom Rini <trini@konsulko.com>
Fri, 7 Jun 2024 20:05:03 +0000 (14:05 -0600)
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>
include/extension_board.h

index 87d404c007461f66dcd2a7d23dea044961fbf0d1..22e4104bc54d1c0305c2332b080573a32b452987 100644 (file)
@@ -14,7 +14,7 @@ struct extension {
        char name[32];
        char owner[32];
        char version[32];
-       char overlay[32];
+       char overlay[64];
        char other[32];
 };