diff options
| author | Simon Glass <[email protected]> | 2019-12-28 10:45:06 -0700 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2020-01-17 14:02:35 -0500 |
| commit | 49acd56e4f1b0cb76af73bb1b22db20c81af3f78 (patch) | |
| tree | 457e7b68186c0f1f0780408ac170b3e25e74f284 /board/cobra5272 | |
| 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 <[email protected]>
Diffstat (limited to 'board/cobra5272')
| -rw-r--r-- | board/cobra5272/cobra5272.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/board/cobra5272/cobra5272.c b/board/cobra5272/cobra5272.c index a0a416b50c1..a79884cb506 100644 --- a/board/cobra5272/cobra5272.c +++ b/board/cobra5272/cobra5272.c @@ -5,6 +5,7 @@ */ #include <common.h> +#include <init.h> #include <asm/immap.h> DECLARE_GLOBAL_DATA_PTR; @@ -31,7 +32,7 @@ int dram_init(void) return 0; }; -int testdram (void) +int testdram(void) { /* TODO: XXX XXX XXX */ printf ("DRAM test not implemented!\n"); |
