diff options
author | Simon Glass | 2020-07-19 10:15:36 -0600 |
---|---|---|
committer | Tom Rini | 2020-08-03 22:19:54 -0400 |
commit | 82a7697b5ab3327d76cba884e10ac603aadac68c (patch) | |
tree | e35987dbb902a54935c036722f0e26204e6ec0cc /cmd | |
parent | 54234592df3324cdb6013d8c94013a2982dd660e (diff) |
dm: core: Drop dm.h header file from dm-demo.h
This header file should not be included in other header files. Remove it
and add it to the cmd file instead.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/demo.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/demo.c b/cmd/demo.c index 9da06f5e4d3..f923533f794 100644 --- a/cmd/demo.c +++ b/cmd/demo.c @@ -8,6 +8,7 @@ #include <common.h> #include <command.h> +#include <dm.h> #include <dm-demo.h> #include <mapmem.h> #include <asm/io.h> |