aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2019-12-28 10:45:10 -0700
committerJagan Teki <jagan@amarulasolutions.com>2020-01-24 23:06:49 +0530
commitf2f8e90034b2bfc501c1f59106a33adfd6b0c85c (patch)
tree6e70510976bc890e5cac495102a85b626a8acb37 /common
parente4789b0d5b354ac27f3879276ce92a7e169328ad (diff)
downloadu-boot-f2f8e90034b2bfc501c1f59106a33adfd6b0c85c.zip
u-boot-f2f8e90034b2bfc501c1f59106a33adfd6b0c85c.tar.gz
u-boot-f2f8e90034b2bfc501c1f59106a33adfd6b0c85c.tar.bz2
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>
Diffstat (limited to 'common')
-rw-r--r--common/command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/command.c b/common/command.c
index ceca992..0d8bf24 100644
--- a/common/command.c
+++ b/common/command.c
@@ -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