summaryrefslogtreecommitdiff
path: root/tests/bad-graph-child-address.dts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bad-graph-child-address.dts')
-rw-r--r--tests/bad-graph-child-address.dts22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/bad-graph-child-address.dts b/tests/bad-graph-child-address.dts
new file mode 100644
index 0000000..f0ae26c
--- /dev/null
+++ b/tests/bad-graph-child-address.dts
@@ -0,0 +1,22 @@
+/dts-v1/;
+ / {
+ bar: bar {
+ ports {
+ #address-cells = <1>;
+ #size-cells = <0>;
+ port@0 {
+ reg = <0>;
+ bar_con: endpoint {
+ remote-endpoint = <&foo_con>;
+ };
+ };
+ };
+ };
+ foo {
+ port {
+ foo_con: endpoint {
+ remote-endpoint = <&bar_con>;
+ };
+ };
+ };
+};