aboutsummaryrefslogtreecommitdiff
path: root/tools/dtoc/dtoc_test_addr32_64.dts
diff options
context:
space:
mode:
authorSimon Glass2021-02-03 06:00:56 -0700
committerSimon Glass2021-03-22 19:23:27 +1300
commitdff51a524c873673fc19f31927ba25445784fb35 (patch)
tree9d92e056aee4a6e1aa69016cb114d2931f67bfe8 /tools/dtoc/dtoc_test_addr32_64.dts
parentacf5cb88b403540408e87d078d916269df371584 (diff)
dtoc: Move test files into a test/ directory
It is confusing to have the test files in the same places as the implementation. Move them into a separate directory. Add a helper function for test_dtoc, to avoid repeating the same path. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/dtoc/dtoc_test_addr32_64.dts')
-rw-r--r--tools/dtoc/dtoc_test_addr32_64.dts32
1 files changed, 0 insertions, 32 deletions
diff --git a/tools/dtoc/dtoc_test_addr32_64.dts b/tools/dtoc/dtoc_test_addr32_64.dts
deleted file mode 100644
index 7599d5b0a59..00000000000
--- a/tools/dtoc/dtoc_test_addr32_64.dts
+++ /dev/null
@@ -1,32 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0+
-/*
- * Test device tree file for dtoc
- *
- * Copyright 2017 Google, Inc
- */
-
-/dts-v1/;
-
-/ {
- #address-cells = <1>;
- #size-cells = <2>;
-
- test1 {
- u-boot,dm-pre-reloc;
- compatible = "test1";
- reg = <0x1234 0x5678 0x0>;
- };
-
- test2 {
- u-boot,dm-pre-reloc;
- compatible = "test2";
- reg = <0x12345678 0x98765432 0x10987654>;
- };
-
- test3 {
- u-boot,dm-pre-reloc;
- compatible = "test3";
- reg = <0x12345678 0x98765432 0x10987654 2 0 3>;
- };
-
-};