diff options
author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2009-05-16 12:14:56 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-07-19 01:05:51 +0200 |
commit | 28c345042eafc550a34b9f52431bd4a22af6ac25 (patch) | |
tree | e9a15fdec851b9d01b53d41c239c531976403d82 /board/mpl/vcma9/vcma9.c | |
parent | 7e3be7cf3bb344f717b6ec3d47a081269ea67ead (diff) |
mpl: printing current stdio devices cleanup
Currently the mpl boards duplicate the code to print the current
devices from common/console.c; use stdio_print_current_devices()
instead
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Edited commit message.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'board/mpl/vcma9/vcma9.c')
-rw-r--r-- | board/mpl/vcma9/vcma9.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/board/mpl/vcma9/vcma9.c b/board/mpl/vcma9/vcma9.c index a4c463a3144..2b3fad2513e 100644 --- a/board/mpl/vcma9/vcma9.c +++ b/board/mpl/vcma9/vcma9.c @@ -27,6 +27,7 @@ #include <common.h> #include <s3c2410.h> +#include <stdio_dev.h> #include <i2c.h> #include "vcma9.h" @@ -316,7 +317,7 @@ int last_stage_init(void) { mem_test_reloc(); checkboard(); - show_stdio_dev(); + stdio_print_current_devices(); check_env(); return 0; } |