Merge branch 'master' into isa/arm64
[lunaix-os.git] / lunaix-os / tests / units / device-tree / samples / inheritence.dts
diff --git a/lunaix-os/tests/units/device-tree/samples/inheritence.dts b/lunaix-os/tests/units/device-tree/samples/inheritence.dts
new file mode 100644 (file)
index 0000000..a7f14f8
--- /dev/null
@@ -0,0 +1,17 @@
+/dts-v1/;
+
+/ {
+    #address-cells = <1>;
+    #size-cells = <2>;  
+
+    C1: child@1 {
+        #interrupt-cells = <3>;
+        C2: child@2 {
+            #address-cells = <4>;
+            C3: child@3 {
+                #size-cells = <0>;
+                #interrupt-cells = <0>;
+            };
+        };
+    };
+};
\ No newline at end of file