Skip to content
Snippets Groups Projects
Commit 5e574546 authored by Doug Anderson's avatar Doug Anderson Committed by Tom Rini
Browse files

fdt_support: Use CONFIG_NR_DRAM_BANKS if defined


It appears that there are some cases where we have more than 4 banks
of memory.  Use CONFIG_NR_DRAM_BANKS if it's defined to handle this.
This will take up a little extra stack space (64 bytes extra if we go
up to 8 banks), but that seems OK.

Signed-off-by: default avatarDoug Anderson <dianders@chromium.org>
parent a558ad71
No related branches found
No related tags found
No related merge requests found
......@@ -387,7 +387,11 @@ static void write_cell(u8 *addr, u64 val, int size)
}
}
#ifdef CONFIG_NR_DRAM_BANKS
#define MEMORY_BANKS_MAX CONFIG_NR_DRAM_BANKS
#else
#define MEMORY_BANKS_MAX 4
#endif
int fdt_fixup_memory_banks(void *blob, u64 start[], u64 size[], int banks)
{
int err, nodeoffset;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment