diff options
author | Tom Rini <trini@konsulko.com> | 2021-07-29 08:20:06 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-07-29 08:20:06 -0400 |
commit | 38436abd5e58044eccddbcd7ec3610a9104e86b6 (patch) | |
tree | 328cb2b1b355964ab196f3d5ba4bb7134d74d8a3 /test | |
parent | bbcacdf4cd23f2e5deb9ef916096c956c955243d (diff) | |
parent | a6c64d255e5117bcf78aec6911d7c034fbfe46f7 (diff) | |
download | u-boot-38436abd5e58044eccddbcd7ec3610a9104e86b6.zip u-boot-38436abd5e58044eccddbcd7ec3610a9104e86b6.tar.gz u-boot-38436abd5e58044eccddbcd7ec3610a9104e86b6.tar.bz2 |
Merge tag 'ti-v2021.10-rc2' of https://source.denx.de/u-boot/custodians/u-boot-tiWIP/29Jul2021
- Add MMC High speed modes for AM64 and J7200
- Add Sierra/Torrent SERDES driver
- Minor clean-ups for R5F boot from SPL
Diffstat (limited to 'test')
-rw-r--r-- | test/dm/core.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/dm/core.c b/test/dm/core.c index 0492698..48e66b7 100644 --- a/test/dm/core.c +++ b/test/dm/core.c @@ -177,6 +177,20 @@ static int dm_test_autobind_uclass_pdata_alloc(struct unit_test_state *uts) } DM_TEST(dm_test_autobind_uclass_pdata_alloc, UT_TESTF_SCAN_PDATA); +/* compare node names ignoring the unit address */ +static int dm_test_compare_node_name(struct unit_test_state *uts) +{ + ofnode node; + + node = ofnode_path("/mmio-bus@0"); + ut_assert(ofnode_valid(node)); + ut_assert(ofnode_name_eq(node, "mmio-bus")); + + return 0; +} + +DM_TEST(dm_test_compare_node_name, UT_TESTF_SCAN_PDATA); + /* Test that binding with uclass plat setting occurs correctly */ static int dm_test_autobind_uclass_pdata_valid(struct unit_test_state *uts) { |