summaryrefslogtreecommitdiff
path: root/test/lib
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2025-03-12 07:55:47 -0600
committerTom Rini <trini@konsulko.com>2025-03-12 07:55:47 -0600
commitcf1c0f396393c5c641018060bbe86a9dd698fd71 (patch)
tree7015c9d706d9c2cea97a500826f9e5c2114f1f49 /test/lib
parent8540eba3e030fb1bcd4c6cd2d9b19f4f8ac1fb94 (diff)
parentda1eb50ca14b648984fa89c69d5e88649cec474b (diff)
Merge branch 'graph' of https://source.denx.de/u-boot/custodians/u-boot-tegra into next
Diffstat (limited to 'test/lib')
-rw-r--r--test/lib/kconfig.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/lib/kconfig.c b/test/lib/kconfig.c
index a3645abf946..2f47af9acf1 100644
--- a/test/lib/kconfig.c
+++ b/test/lib/kconfig.c
@@ -22,10 +22,10 @@ static int lib_test_is_enabled(struct unit_test_state *uts)
ut_asserteq(0, CONFIG_IS_ENABLED(_UNDEFINED));
if (IS_ENABLED(CONFIG_BLOBLIST)) {
- ut_asserteq(0xb000, IF_ENABLED_INT(CONFIG_BLOBLIST_FIXED,
- CONFIG_BLOBLIST_ADDR));
- ut_asserteq(0xb000, CONFIG_IF_ENABLED_INT(BLOBLIST_FIXED,
- BLOBLIST_ADDR));
+ ut_asserteq(0x100, IF_ENABLED_INT(CONFIG_BLOBLIST_FIXED,
+ CONFIG_BLOBLIST_ADDR));
+ ut_asserteq(0x100, CONFIG_IF_ENABLED_INT(BLOBLIST_FIXED,
+ BLOBLIST_ADDR));
}
/*