Browse Source
Signed-off-by: Johannes Beisswenger <johannes.beisswenger@cetitec.com> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>main
Johannes Beisswenger
2 years ago
committed by
David Gibson
5 changed files with 46 additions and 0 deletions
@ -0,0 +1,7 @@
@@ -0,0 +1,7 @@
|
||||
/dts-v1/; |
||||
|
||||
/ { |
||||
foo { |
||||
remote-endpoint = <0xdeadbeef>; |
||||
}; |
||||
}; |
@ -0,0 +1,2 @@
@@ -0,0 +1,2 @@
|
||||
/dts-v1/; |
||||
/ { endpoint {}; }; |
@ -0,0 +1,14 @@
@@ -0,0 +1,14 @@
|
||||
/dts-v1/; |
||||
|
||||
/ { |
||||
bar: bar { |
||||
port { |
||||
bar_con: endpoint { |
||||
remote-endpoint = <&foo_con>; |
||||
}; |
||||
}; |
||||
}; |
||||
foo_con: endpoint { |
||||
remote-endpoint = <&bar_con>; |
||||
}; |
||||
}; |
@ -0,0 +1,19 @@
@@ -0,0 +1,19 @@
|
||||
/dts-v1/; |
||||
|
||||
/ { |
||||
|
||||
bar: bar { |
||||
port { |
||||
bar_con: endpoint { |
||||
remote-endpoint = <&foo_con>; |
||||
}; |
||||
}; |
||||
}; |
||||
foo { |
||||
remote-endpoint = <&bar_con>; // misplaced remote-endpoint property |
||||
port { |
||||
foo_con: endpoint { |
||||
}; |
||||
}; |
||||
}; |
||||
}; |
Loading…
Reference in new issue