mirror of
https://github.com/dgibson/dtc.git
synced 2025-10-13 16:27:39 -04:00
Signed-off-by: Johannes Beisswenger <johannes.beisswenger@cetitec.com> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
19 lines
237 B
Text
19 lines
237 B
Text
/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 {
|
|
};
|
|
};
|
|
};
|
|
};
|