diff options
author | Marcin Niestroj <m.niestroj@grinn-global.com> | 2018-11-21 20:32:03 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-11-26 22:52:14 -0500 |
commit | 70c44f171882768fc6e4dcb0435110b7f897d02e (patch) | |
tree | 4d6f9762fb060dee45f5771604d61d5906aa5d66 /board/grinn | |
parent | f1bca34ebf94bf5ab4ba4644b5e62ce6b3efcb99 (diff) | |
download | u-boot-70c44f171882768fc6e4dcb0435110b7f897d02e.zip u-boot-70c44f171882768fc6e4dcb0435110b7f897d02e.tar.gz u-boot-70c44f171882768fc6e4dcb0435110b7f897d02e.tar.bz2 |
ARM: chiliboard: remove dead !CONFIG_DM_SERIAL code
DM_SERIAL is selected by TARGET_CHILIBOARD, so there is no reason to
keep code that will not be built. Remove it.
Signed-off-by: Marcin Niestroj <m.niestroj@grinn-global.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board/grinn')
-rw-r--r-- | board/grinn/chiliboard/board.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/board/grinn/chiliboard/board.c b/board/grinn/chiliboard/board.c index 2bb91e3..dc0de62 100644 --- a/board/grinn/chiliboard/board.c +++ b/board/grinn/chiliboard/board.c @@ -19,7 +19,6 @@ #include <environment.h> #include <errno.h> #include <miiphy.h> -#include <serial.h> #include <spl.h> #include <watchdog.h> @@ -69,13 +68,6 @@ static void enable_board_pin_mux(void) } #endif /* CONFIG_SKIP_LOWLEVEL_INIT */ -#ifndef CONFIG_DM_SERIAL -struct serial_device *default_serial_console(void) -{ - return &eserial1_device; -} -#endif - #ifndef CONFIG_SKIP_LOWLEVEL_INIT void set_uart_mux_conf(void) { |