diff options
author | Tom Rini <trini@konsulko.com> | 2020-09-07 14:31:00 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-09-07 14:31:00 -0400 |
commit | 314b9b4a38befd120ce1c566d9eea8e0ec9d8336 (patch) | |
tree | 928486047400278e4a08469cd61a94aba690e868 /arch/x86/cpu | |
parent | 96d66a9b8ce11aae9f8bef5244b83b4740b37644 (diff) | |
parent | bac9da46c57511e574aa7e763e17fdd6f55db5bb (diff) | |
download | u-boot-314b9b4a38befd120ce1c566d9eea8e0ec9d8336.tar.gz u-boot-314b9b4a38befd120ce1c566d9eea8e0ec9d8336.tar.xz u-boot-314b9b4a38befd120ce1c566d9eea8e0ec9d8336.zip |
Merge branch 'remove-config-nr-dram-banks-v9-2020-08-26' of https://gitlab.denx.de/u-boot/custodians/u-boot-marvell into next
Diffstat (limited to 'arch/x86/cpu')
-rw-r--r-- | arch/x86/cpu/broadwell/cpu_from_spl.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/x86/cpu/broadwell/cpu_from_spl.c b/arch/x86/cpu/broadwell/cpu_from_spl.c index 6567d50653..4d4cdafa2b 100644 --- a/arch/x86/cpu/broadwell/cpu_from_spl.c +++ b/arch/x86/cpu/broadwell/cpu_from_spl.c @@ -53,14 +53,12 @@ void board_debug_uart_init(void) int dram_init_banksize(void) { -#ifdef CONFIG_NR_DRAM_BANKS struct spl_handoff *ho; ho = bloblist_find(BLOBLISTT_SPL_HANDOFF, sizeof(*ho)); if (!ho) return log_msg_ret("Missing SPL hand-off info", -ENOENT); handoff_load_dram_banks(ho); -#endif return 0; } |