diff options
author | Simon Glass | 2020-07-19 10:15:42 -0600 |
---|---|---|
committer | Tom Rini | 2020-08-03 22:19:54 -0400 |
commit | 411e9eb88c0cf2b99f3dcaa9b300c0e52ee751f3 (patch) | |
tree | c8fc19b55facdcc5e13f2e803f4a067895f504f5 /board/atmel/common | |
parent | 055efe5690eaab99301151878deab9a382c6e65e (diff) |
w1: Drop dm.h header file
This header file should not be included in other header files. Remove it
and use a forward declaration instead.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/atmel/common')
-rw-r--r-- | board/atmel/common/board.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/atmel/common/board.c b/board/atmel/common/board.c index c41706c4005..eee5c357bdc 100644 --- a/board/atmel/common/board.c +++ b/board/atmel/common/board.c @@ -5,6 +5,7 @@ */ #include <common.h> +#include <dm.h> #include <env.h> #include <w1.h> #include <w1-eeprom.h> |