diff options
author | Simon Glass <sjg@chromium.org> | 2013-11-10 10:26:53 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2013-11-21 16:54:26 -0700 |
commit | 0eb2acee394b16dd734f5f48b2cbf2f22065d060 (patch) | |
tree | cd502638e2cc88710bf27d591679bd284906ad7b /include | |
parent | cbe5cdfcd31633edce4ee78ebc008b922de571e3 (diff) |
sandbox: config: Don't use 64-bit physical memory
Sandbox uses an emulated memory map which is quite small. We don't need the
CONFIG_PHYS_64BIT option since we can address memory with a 32-bit offset
into our ram_buf.
Adjust the phys_addr_t and phys_size_t types accordingly.
Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Hung-ying Tyan <tyanh@chromium.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/sandbox.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/configs/sandbox.h b/include/configs/sandbox.h index 0884ad3a02..a4edc624bc 100644 --- a/include/configs/sandbox.h +++ b/include/configs/sandbox.h @@ -75,7 +75,6 @@ #define CONFIG_SYS_LOAD_ADDR 0x00000000 #define CONFIG_SYS_MEMTEST_START 0x00100000 #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + 0x1000) -#define CONFIG_PHYS_64BIT #define CONFIG_SYS_FDT_LOAD_ADDR 0x1000000 /* Size of our emulated memory */ |