diff options
author | Tom Rini | 2017-07-26 11:29:20 -0400 |
---|---|---|
committer | Tom Rini | 2017-07-26 11:29:20 -0400 |
commit | 0ddc9c172279f686077310fbcfa5baf10c719188 (patch) | |
tree | b577c229572fc411172a15b724303d1c91d9a5a4 /common | |
parent | dc5210a20d7143f8adb3c4341e44d797357708bf (diff) | |
parent | e94136bd87b18345e38a5e44445a476de12b4354 (diff) |
Merge git://git.denx.de/u-boot-mips
Diffstat (limited to 'common')
-rw-r--r-- | common/board_f.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/board_f.c b/common/board_f.c index ffa84e35661..49c8bc89f3c 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -418,7 +418,7 @@ static int reserve_uboot(void) */ gd->relocaddr -= gd->mon_len; gd->relocaddr &= ~(4096 - 1); -#ifdef CONFIG_E500 +#if defined(CONFIG_E500) || defined(CONFIG_MIPS) /* round down to next 64 kB limit so that IVPR stays aligned */ gd->relocaddr &= ~(65536 - 1); #endif |