diff options
Diffstat (limited to 'lib_ppc/board.c')
| -rw-r--r-- | lib_ppc/board.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/lib_ppc/board.c b/lib_ppc/board.c index 155171d6b..6dd4d56ff 100644 --- a/lib_ppc/board.c +++ b/lib_ppc/board.c @@ -25,7 +25,7 @@  #include <watchdog.h>  #include <command.h>  #include <malloc.h> -#include <devices.h> +#include <stdio_dev.h>  #ifdef CONFIG_8xx  #include <mpc8xx.h>  #endif @@ -932,8 +932,8 @@ void board_init_r (gd_t *id, ulong dest_addr)  #endif  /** leave this here (after malloc(), environment and PCI are working) **/ -	/* Initialize devices */ -	devices_init (); +	/* Initialize stdio devices */ +	stdio_init ();  	/* Initialize the jump table for applications */  	jumptable_init (); |