diff options
author | Simon Glass <sjg@chromium.org> | 2020-07-19 10:15:51 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-08-03 22:19:54 -0400 |
commit | dcd7c906d03829ce3a641c2a67edfe242dcea714 (patch) | |
tree | a6f28c03b5f17e4aee4b76bf8e190bb1cf350d95 /board/mscc | |
parent | 153f269ebefe7a9fbcebf2fd427fba2ea9bf1df0 (diff) | |
download | u-boot-dcd7c906d03829ce3a641c2a67edfe242dcea714.zip u-boot-dcd7c906d03829ce3a641c2a67edfe242dcea714.tar.gz u-boot-dcd7c906d03829ce3a641c2a67edfe242dcea714.tar.bz2 |
mscc: Drop dm.h header file
This header file should not be included in other header files. Remove it
from each one and use a forward declaration instead.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/mscc')
-rw-r--r-- | board/mscc/servalt/servalt.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/board/mscc/servalt/servalt.c b/board/mscc/servalt/servalt.c index d0e6016..879f5de 100644 --- a/board/mscc/servalt/servalt.c +++ b/board/mscc/servalt/servalt.c @@ -9,6 +9,8 @@ #include <asm/io.h> #include <led.h> +DECLARE_GLOBAL_DATA_PTR; + enum { BOARD_TYPE_PCB116 = 0xAABBCE00, }; |