diff options
author | Tom Rini <trini@konsulko.com> | 2023-03-16 12:16:14 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-03-16 12:16:14 -0400 |
commit | cb90ddb2a64f30e6b0411f9385ddd84c5612314e (patch) | |
tree | e0f834058c62cc2d4a852fc83b9f92cd85121857 /test/lib/kconfig_spl.c | |
parent | a5faa4a9eb45f2cc0e858622db8fabafd644085b (diff) | |
parent | c3cea95fd21937ce82be3dbd1062dde8fb0e6114 (diff) |
Merge tag 'dm-next-12mar23a' of git://git.denx.de/u-boot-dm into next
More tests and fixes for fdt command
binman signing feature
fix buildman -A bug introduced recently
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'test/lib/kconfig_spl.c')
-rw-r--r-- | test/lib/kconfig_spl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/lib/kconfig_spl.c b/test/lib/kconfig_spl.c index c89ceaec66f..8f8a3411b14 100644 --- a/test/lib/kconfig_spl.c +++ b/test/lib/kconfig_spl.c @@ -15,9 +15,9 @@ static int lib_test_spl_is_enabled(struct unit_test_state *uts) { ulong val; - ut_asserteq(0, CONFIG_IS_ENABLED(CMDLINE)) - ut_asserteq(1, CONFIG_IS_ENABLED(OF_PLATDATA)) - ut_asserteq(0, CONFIG_IS_ENABLED(_UNDEFINED)) + ut_asserteq(0, CONFIG_IS_ENABLED(CMDLINE)); + ut_asserteq(1, CONFIG_IS_ENABLED(OF_PLATDATA)); + ut_asserteq(0, CONFIG_IS_ENABLED(_UNDEFINED)); /* * This fails if CONFIG_TEST_KCONFIG_ENABLE is not enabled, since the |