Update MEM_SUPPORT_64BIT_DATA to be always defined

Define this macro always so we don't need the preprocessor to check it.
Convert the users to #if instead of #ifdef.

Note that '#if MEM_SUPPORT_64BIT_DATA' does not give an error if the
macro is not define. It just assumes zero.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Stefan Roese <sr@denx.de>
This commit is contained in:
Simon Glass
2020-06-02 19:26:44 -06:00
committed by Tom Rini
parent 84dd190244
commit 3428faf23a
4 changed files with 34 additions and 32 deletions

View File

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