mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-11 01:36:59 +02:00
When bringing in the series 'arm: dts: am62-beagleplay: Fix Beagleplay Ethernet"' I failed to notice that b4 noticed it was based on next and so took that as the base commit and merged that part of next to master. This reverts commitc8ffd1356d
, reversing changes made to2ee6f3a5f7
. Reported-by: Jonas Karlman <jonas@kwiboo.se> Signed-off-by: Tom Rini <trini@konsulko.com>
50 lines
1.0 KiB
C
50 lines
1.0 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
#include <common.h>
|
|
#include <dm.h>
|
|
#include <dm/test.h>
|
|
#include <test/ut.h>
|
|
|
|
static int dm_test_ofprop_get_property(struct unit_test_state *uts)
|
|
{
|
|
ofnode node;
|
|
struct ofprop prop;
|
|
const void *value;
|
|
const char *propname;
|
|
int res, len, count = 0;
|
|
|
|
node = ofnode_path("/cros-ec/flash");
|
|
for (res = ofnode_first_property(node, &prop);
|
|
!res;
|
|
res = ofnode_next_property(&prop)) {
|
|
value = ofprop_get_property(&prop, &propname, &len);
|
|
ut_assertnonnull(value);
|
|
switch (count) {
|
|
case 0:
|
|
ut_asserteq_str("image-pos", propname);
|
|
ut_asserteq(4, len);
|
|
break;
|
|
case 1:
|
|
ut_asserteq_str("size", propname);
|
|
ut_asserteq(4, len);
|
|
break;
|
|
case 2:
|
|
ut_asserteq_str("erase-value", propname);
|
|
ut_asserteq(4, len);
|
|
break;
|
|
case 3:
|
|
/* only for plat */
|
|
ut_asserteq_str("name", propname);
|
|
ut_asserteq(6, len);
|
|
ut_asserteq_str("flash", value);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
count++;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
DM_TEST(dm_test_ofprop_get_property, UT_TESTF_SCAN_PDATA | UT_TESTF_SCAN_FDT);
|