aboutsummaryrefslogtreecommitdiff
path: root/include/test
diff options
context:
space:
mode:
authorSimon Glass2022-07-30 15:52:12 -0600
committerTom Rini2022-08-12 08:14:24 -0400
commit7b1dfc9fd7e2efed345c3fe9a2412b5300ac285e (patch)
treeb43e1efeef5f4a868089c163bcd7ccb0627d53e2 /include/test
parentb7eaa4f5e5b78cbf8b133f13e65412be55484d07 (diff)
dm: core: Prepare for updating the device tree with ofnode
Add some documentation and a new flag so that we can safely enabled using the ofnode interface to write to the device tree. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/test')
-rw-r--r--include/test/test.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/test/test.h b/include/test/test.h
index 0104e189f63..c888d68b1ed 100644
--- a/include/test/test.h
+++ b/include/test/test.h
@@ -46,6 +46,8 @@ enum {
UT_TESTF_CONSOLE_REC = BIT(5), /* needs console recording */
/* do extra driver model init and uninit */
UT_TESTF_DM = BIT(6),
+ /* live or flat device tree, but not both in the same executable */
+ UT_TESTF_LIVE_OR_FLAT = BIT(4),
};
/**