tests-platform.dtsi 562 B

12345678910111213141516171819202122232425262728293031323334353637
  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. "test-compat2",
  24. "test-compat3";
  25. reg = <0x100>;
  26. };
  27. };
  28. };
  29. };
  30. };