git.openpandora.org
/
pandora-u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6430711
)
cmd/mem.c, test/cmd/mem_copy.c: Add <compiler.h>
author
Tom Rini
<trini@konsulko.com>
Wed, 14 May 2025 22:46:01 +0000
(16:46 -0600)
committer
Tom Rini
<trini@konsulko.com>
Thu, 29 May 2025 14:29:16 +0000
(08:29 -0600)
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>
cmd/mem.c
patch
|
blob
|
history
test/cmd/mem_copy.c
patch
|
blob
|
history
diff --git
a/cmd/mem.c
b/cmd/mem.c
index
9e71677
..
e5b9cb2
100644
(file)
--- a/
cmd/mem.c
+++ b/
cmd/mem.c
@@
-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
diff --git
a/test/cmd/mem_copy.c
b/test/cmd/mem_copy.c
index
3e904fc
..
8e551f1
100644
(file)
--- 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>