1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-01 08:42:12 +02:00

common: Move and rename CONFIG_SYS_SUPPORT_64BIT_DATA

This is not really a CONFIG since it is not intended to be set by boards.
Move it into the compiler header with other similar defines, and rename
it.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass
2019-12-28 10:45:10 -07:00
committed by Tom Rini
parent 6df75135b5
commit 4d979bfdbc
7 changed files with 37 additions and 38 deletions

View File

@@ -469,7 +469,7 @@ int cmd_get_data_size(char* arg, int default_size)
return 2;
case 'l':
return 4;
#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
#ifdef MEM_SUPPORT_64BIT_DATA
case 'q':
return 8;
#endif