summaryrefslogtreecommitdiff
path: root/tests/bad-graph-root4.dts
blob: 5b1a1ea8a877d2d68ba98294a9c16d415b6e4370 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 {
			};
		};
	};
};