1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter.git synced 2025-03-09 15:40:20 +00:00
openmptcprouter/6.12/target/linux/bcm27xx/patches-6.12/950-0407-dtc-update.patch
Ycarus (Yannick Chabanois) bdb9b0046f Add bcm27xx 6.12 test support
2024-12-20 14:17:26 +01:00

20 lines
717 B
Diff

From c4cdbf358d82cf2cb1603c5669f3c3d88ec1d1b1 Mon Sep 17 00:00:00 2001
From: Phil Elwell <phil@raspberrypi.com>
Date: Fri, 1 Dec 2023 15:59:45 +0000
Subject: [PATCH 407/697] dtc update
---
scripts/dtc/checks.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/scripts/dtc/checks.c
+++ b/scripts/dtc/checks.c
@@ -724,7 +724,7 @@ static void check_alias_paths(struct che
continue;
}
if (strspn(prop->name, LOWERCASE DIGITS "-") != strlen(prop->name))
- FAIL(c, dti, node, "aliases property name must include only lowercase and '-'");
+ FAIL(c, dti, node, "aliases property name (%s) must include only lowercase and '-'", prop->name);
}
}
WARNING(alias_paths, check_alias_paths, NULL);