Browse Source
The only purpose of the dtc_references_dts0 testcase was to check handling of references in the old dts v0 syntax. Since we no longer support the old syntax, and the references_dts0.dts has been converted to the new format, it's entirely redundant. This patch removes it. Signed-off-by: David Gibson <david@gibson.dropbear.id.au>main
David Gibson
15 years ago
committed by
Jon Loeliger
2 changed files with 0 additions and 29 deletions
@ -1,26 +0,0 @@ |
|||||||
/dts-v1/; |
|
||||||
|
|
||||||
/ { |
|
||||||
/* Explicit phandles */ |
|
||||||
n1: node1 { |
|
||||||
linux,phandle = <0x2000>; |
|
||||||
ref = <&{/node2}>; /* reference precedes target */ |
|
||||||
lref = <&n2>; |
|
||||||
}; |
|
||||||
n2: node2 { |
|
||||||
linux,phandle = <0x1>; |
|
||||||
ref = <&{/node1}>; /* reference after target */ |
|
||||||
lref = <&n1>; |
|
||||||
}; |
|
||||||
|
|
||||||
/* Implicit phandles */ |
|
||||||
n3: node3 { |
|
||||||
ref = <&{/node4}>; |
|
||||||
lref = <&n4>; |
|
||||||
}; |
|
||||||
n4: node4 { |
|
||||||
}; |
|
||||||
n5: node5 { |
|
||||||
linux,phandle = <&n5>; |
|
||||||
}; |
|
||||||
}; |
|
Loading…
Reference in new issue