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 <trini@konsulko.com>
This commit is contained in:
Tom Rini 2025-05-14 16:46:01 -06:00
parent 6430711849
commit 55717ca66f
2 changed files with 2 additions and 0 deletions

View File

@ -14,6 +14,7 @@
#include <bootretry.h>
#include <cli.h>
#include <command.h>
#include <compiler.h>
#include <console.h>
#include <display_options.h>
#ifdef CONFIG_MTD_NOR_FLASH

View File

@ -4,6 +4,7 @@
*/
#include <command.h>
#include <compiler.h>
#include <console.h>
#include <mapmem.h>
#include <dm/test.h>