From: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Date: Sat, 1 Apr 2017 22:48:12 +0000 (+0900)
Subject: common, kconfig: Fix defaut value of BOOTSTAGE_STASH_SIZE
X-Git-Tag: v2025.01-rc5-pxa1908~7236
X-Git-Url: http://git.dujemihanovic.xyz/repo?a=commitdiff_plain;h=fad6a2b771eecac5ce69173235743e5357bf014d;p=u-boot.git

common, kconfig: Fix defaut value of BOOTSTAGE_STASH_SIZE

The default value of BOOTSTAGE_STASH_SIZE should be set to hexadecimal,
but an integer value is set. This fixes the BOOTSTAGE_STASH_SIZE number
from hexadecimal to integer.

Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
---

diff --git a/common/Kconfig b/common/Kconfig
index 1e0c627341..ec519d07cc 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -90,7 +90,7 @@ config BOOTSTAGE_STASH_ADDR
 
 config BOOTSTAGE_STASH_SIZE
 	hex "Size of boot timing stash region"
-	default 4096
+	default 0x1000
 	help
 	  This should be large enough to hold the bootstage stash. A value of
 	  4096 (4KiB) is normally plenty.