aboutsummaryrefslogtreecommitdiff
path: root/tests/bad-graph.dts
blob: 522da0edbbc8def9dc31a257e998352f331d9a94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/dts-v1/;

/ {
	ports {
		#address-cells = <1>;
		#size-cells = <0>;

		bad_endpoint: port-a@0 {
			reg = <0>;
			#address-cells = <1>;
			#size-cells = <0>;

			endpoint@d0 {
				reg = <0>;
				remote-endpoint = <0xdeadbeef>;
			};

		};

		port@1 {
			reg = <0>;
		};
	};
};