mirror of
https://github.com/dgibson/dtc.git
synced 2025-10-13 08:17:40 -04:00
* bad-graph-child-address.dts: additional child address test since the one in bad-graph.dts is now shadowed by its prerequisites also failing. * bad-graph-reg-cells.dts: test warnings produced by check_graph_reg(). Signed-off-by: Johannes Beisswenger <johannes.beisswenger@cetitec.com> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
22 lines
283 B
Text
22 lines
283 B
Text
/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>;
|
|
};
|
|
};
|
|
};
|
|
};
|