X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=include%2Fdm%2Ftest.h;h=07385cd531fa2c9af660010ad4a439aab0ec75e0;hb=b7c25b11b6a1e3f840464224309b72a91b65bc56;hp=cba504909acae50f337989c0ab2743952f86050a;hpb=8de536c27c10bbbd7bd974b68718f3c788e4e8af;p=oweals%2Fu-boot.git diff --git a/include/dm/test.h b/include/dm/test.h index cba504909a..07385cd531 100644 --- a/include/dm/test.h +++ b/include/dm/test.h @@ -1,7 +1,6 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ /* * Copyright (c) 2013 Google, Inc. - * - * SPDX-License-Identifier: GPL-2.0+ */ #ifndef __DM_TEST_H @@ -70,6 +69,7 @@ struct dm_test_priv { int op_count[DM_TEST_OP_COUNT]; int uclass_flag; int uclass_total; + int uclass_postp; }; /** @@ -150,6 +150,8 @@ enum { DM_TESTF_SCAN_PDATA = 1 << 0, /* test needs platform data */ DM_TESTF_PROBE_TEST = 1 << 1, /* probe test uclass */ DM_TESTF_SCAN_FDT = 1 << 2, /* scan device tree */ + DM_TESTF_FLAT_TREE = 1 << 3, /* test needs flat DT */ + DM_TESTF_LIVE_TREE = 1 << 4, /* needs live device tree */ }; /* Declare a new driver model test */