1/*
2 * Test device tree file for dtoc
3 *
4 * Copyright 2017 Google, Inc
5 *
6 * SPDX-License-Identifier:	GPL-2.0+
7 */
8
9 /dts-v1/;
10
11/ {
12	#address-cells = <1>;
13	#size-cells = <1>;
14
15	test1 {
16		u-boot,dm-pre-reloc;
17		compatible = "test1";
18		reg = <0x1234 0x5678>;
19	};
20
21	test2 {
22		u-boot,dm-pre-reloc;
23		compatible = "test2";
24		reg = <0x12345678 0x98765432 2 3>;
25	};
26
27};
28