diff options
Diffstat (limited to 'lib_ppc')
-rw-r--r-- | lib_ppc/board.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib_ppc/board.c b/lib_ppc/board.c index 333d2d25c10..56cbdfe5ee7 100644 --- a/lib_ppc/board.c +++ b/lib_ppc/board.c @@ -438,10 +438,10 @@ void board_init_f (ulong bootflag) /* * reserve memory for U-Boot code, data & bss - * round down to next 16 kB limit + * round down to next 4 kB limit */ addr -= len; - addr &= ~(16 * 1024 - 1); + addr &= ~(4096 - 1); #ifdef DEBUG printf ("Reserving %ldk for U-Boot at: %08lx\n", len >> 10, addr); |