commit | 19f673338f8cd37496be4fe732b9a4ede4359184 | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Tue Jun 02 19:26:48 2020 -0600 |
committer | Tom Rini <trini@konsulko.com> | Wed Jul 08 17:21:46 2020 -0400 |
tree | 3bbad1b2b53fbf5222c0bc55852ea62b55477504 | |
parent | 2056b9e1f9d7b11a61c7c653fa90128c0e9419d0 [diff] |
command: Drop #ifdef for MEM_SUPPORT_64BIT_DATA This is defined only when __lp64__ is defined. That means that ulong is 64 bits long. Therefore we don't need to use a separate u64 type on those architectures. Fix up the code to take advantage of that, removing the preprocessor conditions. Also include the header file that defines MEM_SUPPORT_64BIT_DATA. It is included by env.h in this file, but that might not last forever. Signed-off-by: Simon Glass <sjg@chromium.org>