diff options
author | Simon Glass | 2019-12-28 10:45:06 -0700 |
---|---|---|
committer | Tom Rini | 2020-01-17 14:02:35 -0500 |
commit | 49acd56e4f1b0cb76af73bb1b22db20c81af3f78 (patch) | |
tree | 457e7b68186c0f1f0780408ac170b3e25e74f284 /board/sysam | |
parent | 9b4a205f454dd19687aaf9a22a5bc01164182a90 (diff) |
common: Move testdram() into init.h
This function is called during init so move it to the init header file.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/sysam')
-rw-r--r-- | board/sysam/stmark2/stmark2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/sysam/stmark2/stmark2.c b/board/sysam/stmark2/stmark2.c index 790199a640d..ce8b541ccdf 100644 --- a/board/sysam/stmark2/stmark2.c +++ b/board/sysam/stmark2/stmark2.c @@ -6,6 +6,7 @@ */ #include <common.h> +#include <init.h> #include <spi.h> #include <asm/io.h> #include <asm/immap.h> |