diff options
author | Simon Glass <sjg@chromium.org> | 2020-02-03 07:36:17 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2020-02-05 21:48:22 -0700 |
commit | f217651575f30256955f22a1691115a70e7f5934 (patch) | |
tree | 422f580407bce71672737bd358723f47be495a22 /board/hisilicon | |
parent | 336d4615f8fa774557d14f9b3245daa9e5fe3dbc (diff) |
dm: core: Drop the inclusion of linux/compat.h in dm.h
Most files don't need this header and it pulls in quite of lots of stuff,
malloc() in particular. Drop it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/hisilicon')
-rw-r--r-- | board/hisilicon/poplar/poplar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/hisilicon/poplar/poplar.c b/board/hisilicon/poplar/poplar.c index 36999bdcea..4937dc374c 100644 --- a/board/hisilicon/poplar/poplar.c +++ b/board/hisilicon/poplar/poplar.c @@ -4,9 +4,9 @@ * Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org> */ +#include <common.h> #include <cpu_func.h> #include <dm.h> -#include <common.h> #include <init.h> #include <asm/io.h> #include <dm/platform_data/serial_pl01x.h> |