diff options
author | Tom Rini <trini@konsulko.com> | 2024-04-30 20:41:55 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-05-07 08:00:24 -0600 |
commit | 37aab1e496ae984a6d667e09b50a450a36c01d00 (patch) | |
tree | f9f0bfba8bbf9ce26a21e39f66519573b5533176 | |
parent | 2e6ecea31ebff94f5d8588b4076eaf05a2e2111c (diff) |
board: grinn: Remove <common.h> and add needed includes
Remove <common.h> from this board vendor directory and when needed
add missing include files directly.
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | board/grinn/chiliboard/board.c | 2 | ||||
-rw-r--r-- | board/grinn/liteboard/board.c | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/board/grinn/chiliboard/board.c b/board/grinn/chiliboard/board.c index 64b32ca96df..8313b37655f 100644 --- a/board/grinn/chiliboard/board.c +++ b/board/grinn/chiliboard/board.c @@ -4,7 +4,7 @@ * Copyright (C) 2017, Grinn - http://grinn-global.com/ */ -#include <common.h> +#include <config.h> #include <init.h> #include <net.h> #include <asm/arch/chilisom.h> diff --git a/board/grinn/liteboard/board.c b/board/grinn/liteboard/board.c index cf1d7cee925..07bb5b7d797 100644 --- a/board/grinn/liteboard/board.c +++ b/board/grinn/liteboard/board.c @@ -4,7 +4,6 @@ * Copyright (C) 2016 Grinn */ -#include <common.h> #include <command.h> #include <init.h> #include <asm/arch/clock.h> |