diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2015-06-01 21:07:23 +0800 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-06-04 03:03:17 -0600 |
commit | d04e30b839f3a60b72fda7021eaf2f94b185d756 (patch) | |
tree | 43e8b75a3dd143b51588c7cdcf63754da9af32d6 | |
parent | 6c4247e98eb3b1bf7ec19b61915c803db5670ad0 (diff) | |
download | u-boot-imx-d04e30b839f3a60b72fda7021eaf2f94b185d756.zip u-boot-imx-d04e30b839f3a60b72fda7021eaf2f94b185d756.tar.gz u-boot-imx-d04e30b839f3a60b72fda7021eaf2f94b185d756.tar.bz2 |
x86: kconfig: Make FSP_TEMP_RAM_ADDR depend on HAVE_FSP
FSP_TEMP_RAM_ADDR should only be visible when HAVE_FSP is on.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | arch/x86/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index ac1dc65..3506ba2 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig @@ -220,6 +220,7 @@ config FSP_ADDR config FSP_TEMP_RAM_ADDR hex + depends on HAVE_FSP default 0x2000000 help Stack top address which is used in FspInit after DRAM is ready and |