summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2025-05-14 12:21:31 -0600
committerTom Rini <[email protected]>2025-05-14 12:21:31 -0600
commit2f0bf852abeca1fed98662b4b5f6a655b8d46925 (patch)
tree414a68fe79455aaf68346739c33faad7735f8871 /test
parent60e313d5c6373df88b99dc3be6f4ead04e9b3360 (diff)
cmd/mem.c, test/cmd/mem_copy.c: Add <compiler.h>
These files require <compiler.h> in order to have MEM_SUPPORT_64BIT_DATA be defined but currently rely on a long indirect include path to get it. Add this directly. Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'test')
-rw-r--r--test/cmd/mem_copy.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/cmd/mem_copy.c b/test/cmd/mem_copy.c
index 3e904fc4e4b..8e551f18a85 100644
--- a/test/cmd/mem_copy.c
+++ b/test/cmd/mem_copy.c
@@ -4,6 +4,7 @@
*/
#include <command.h>
+#include <compiler.h>
#include <console.h>
#include <mapmem.h>
#include <dm/test.h>