diff options
author | Marek Vasut <marex@denx.de> | 2012-09-14 21:45:51 (GMT) |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2012-10-15 18:53:59 (GMT) |
commit | 036036d79c8535342594ab362143416d6a9bd11e (patch) | |
tree | 8e874f63630bd44b349eea84b368088c0b70a433 /post/board | |
parent | a3827250606895ec2dd4b8d867342b7cabf3692f (diff) | |
download | u-boot-036036d79c8535342594ab362143416d6a9bd11e.tar.xz |
serial: Remove CONFIG_SERIAL_MULTI from remaining sources
Remove the parts depending either on disabled CONFIG_SERIAL_MULTI
or ifdefs around CONFIG_SERIAL_MULTI parts since CONFIG_SERIAL_MULTI
is now enabled by default.
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Marek Vasut <marek.vasut@gmail.com>
Cc: Tom Rini <trini@ti.com>
Cc: Anatolij Gustschin <agust@denx.de>
Cc: Stefan Roese <sr@denx.de>
Diffstat (limited to 'post/board')
-rw-r--r-- | post/board/pdm360ng/coproc_com.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/post/board/pdm360ng/coproc_com.c b/post/board/pdm360ng/coproc_com.c index 0755352..b7e02b5 100644 --- a/post/board/pdm360ng/coproc_com.c +++ b/post/board/pdm360ng/coproc_com.c @@ -28,8 +28,6 @@ #include <post.h> #include <serial.h> -#if defined(CONFIG_SERIAL_MULTI) - /* * Actually the termination sequence of the coprocessor * commands is "\r\n" (CR LF), but here we use a side effect of @@ -94,4 +92,3 @@ int coprocessor_post_test(int flags) return 0; } -#endif /* CONFIG_SERIAL_MULTI */ |