]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
spl: Correct dependency for SPL_SYS_REPORT_STACK_F_USAGE
authorTom Rini <trini@konsulko.com>
Thu, 25 Sep 2025 20:51:24 +0000 (14:51 -0600)
committerTom Rini <trini@konsulko.com>
Wed, 8 Oct 2025 22:12:43 +0000 (16:12 -0600)
In Kconfig syntax, "!=" is a string and not numerical comparison. This
means that to check for a non-zero SPL_SIZE_LIMIT_PROVIDE_STACK value we
need to test that it is "> 0" rather than "!=" 0. This is because "0x0 >
0" is false while "0x0 != 0" is true.

Signed-off-by: Tom Rini <trini@konsulko.com>
common/spl/Kconfig

index f34b96efc02224bb5e3ea81b0d4d299c647d59b2..cb7b4179384b825fbc84db66b52982c88ffbf564 100644 (file)
@@ -176,7 +176,7 @@ config SPL_SYS_STACK_F_CHECK_BYTE
          Constant used to check the stack
 
 config SPL_SYS_REPORT_STACK_F_USAGE
-       depends on SPL_SIZE_LIMIT_PROVIDE_STACK != 0
+       depends on SPL_SIZE_LIMIT_PROVIDE_STACK > 0
        bool "Check and report stack usage in SPL before relocation"
        help
          If this option is enabled, the initial SPL stack is filled with 0xaa