tests-platform.dtsi 508 B

123456789101112131415161718192021222324252627282930313233343536
  1. / {
  2. testcase-data {
  3. platform-tests {
  4. #address-cells = <1>;
  5. #size-cells = <0>;
  6. test-device@0 {
  7. compatible = "test-device";
  8. reg = <0x0>;
  9. #address-cells = <1>;
  10. #size-cells = <0>;
  11. dev@100 {
  12. compatible = "test-sub-device";
  13. reg = <0x100>;
  14. };
  15. };
  16. test-device@1 {
  17. compatible = "test-device";
  18. reg = <0x1>;
  19. #address-cells = <1>;
  20. #size-cells = <0>;
  21. dev@100 {
  22. compatible = "test-sub-device";
  23. reg = <0x100>;
  24. };
  25. };
  26. };
  27. };
  28. };