diff options
author | Simon Glass <sjg@chromium.org> | 2019-11-14 12:57:24 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-12-02 18:23:11 -0500 |
commit | b03e0510d769381ce3cda5a494889bfee5042c59 (patch) | |
tree | cb474a50859f50c473d2222002a798a4dfe4ed74 /board/isee | |
parent | f516fd99ec59d964836906c8ac370f246d60c14d (diff) | |
download | u-boot-b03e0510d769381ce3cda5a494889bfee5042c59.zip u-boot-b03e0510d769381ce3cda5a494889bfee5042c59.tar.gz u-boot-b03e0510d769381ce3cda5a494889bfee5042c59.tar.bz2 |
common: Move serial functions out of common.h
These functions belong in serial.h so move them over.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board/isee')
-rw-r--r-- | board/isee/igep003x/board.c | 1 | ||||
-rw-r--r-- | board/isee/igep00x0/spl.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/board/isee/igep003x/board.c b/board/isee/igep003x/board.c index a8c2b12..d591212 100644 --- a/board/isee/igep003x/board.c +++ b/board/isee/igep003x/board.c @@ -8,6 +8,7 @@ #include <common.h> #include <env.h> #include <errno.h> +#include <serial.h> #include <spl.h> #include <asm/arch/cpu.h> #include <asm/arch/hardware.h> diff --git a/board/isee/igep00x0/spl.c b/board/isee/igep00x0/spl.c index e092e1a..f814fe1 100644 --- a/board/isee/igep00x0/spl.c +++ b/board/isee/igep00x0/spl.c @@ -1,5 +1,6 @@ // SPDX-License-Identifier: GPL-2.0+ +#include <serial.h> #include <asm/io.h> #include <asm/arch/mem.h> #include <asm/arch/sys_proto.h> |