diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2018-10-15 02:20:58 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2018-11-14 09:16:27 -0800 |
commit | d92878aa4089e1c91f8a6cb7b9655cd27e6ea23c (patch) | |
tree | e9f5a5a6d0d6cedeadda52da4cc8a38e26163289 /include/dm/test.h | |
parent | 651d0c019a428ca8b14352210c1ce7804dd51fae (diff) |
test: dm: core: Add test case for uclass driver's child_post_probe()
Add test case to cover uclass driver's child_post_probe() method.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/dm/test.h')
-rw-r--r-- | include/dm/test.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/dm/test.h b/include/dm/test.h index 83418eb482..07385cd531 100644 --- a/include/dm/test.h +++ b/include/dm/test.h @@ -69,6 +69,7 @@ struct dm_test_priv { int op_count[DM_TEST_OP_COUNT]; int uclass_flag; int uclass_total; + int uclass_postp; }; /** |