mirror of
https://github.com/Ysurac/openmptcprouter.git
synced 2025-03-09 15:40:20 +00:00
20 lines
717 B
Diff
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);
|