spl: Correct SPL_SIZE_LIMIT Kconfig option
authorTom Rini <trini@konsulko.com>
Sat, 8 Jun 2019 00:39:32 +0000 (20:39 -0400)
committerTom Rini <trini@konsulko.com>
Sat, 8 Jun 2019 11:49:00 +0000 (07:49 -0400)
When introduced this limit was an int but was then changed to hex
without noting as much in the prompt nor changing existing users.  Put
this back to an int.

Reported-by: Fabio Estevam <festevam@gmail.com>
Tested-by: Fabio Estevam <festevam@gmail.com>
Fixes: 2577015dc5c4 ("spl: add overall SPL size check")
Signed-off-by: Tom Rini <trini@konsulko.com>
common/spl/Kconfig

index 6a98536f2083d2eecf8da75287497e1e701f4430..ac2f470032d8b42ad579c5af813e62961b2a55f3 100644 (file)
@@ -26,7 +26,7 @@ config SPL_FRAMEWORK
          and the Linux Kernel.  If unsure, say Y.
 
 config SPL_SIZE_LIMIT
-       hex "Maximum size of SPL image"
+       int "Maximum size of SPL image"
        depends on SPL
        default 0
        help