diff options
Diffstat (limited to 'lib_blackfin')
-rw-r--r-- | lib_blackfin/board.c | 6 | ||||
-rw-r--r-- | lib_blackfin/post.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib_blackfin/board.c b/lib_blackfin/board.c index 047f164..28de372 100644 --- a/lib_blackfin/board.c +++ b/lib_blackfin/board.c @@ -11,7 +11,7 @@ #include <common.h> #include <command.h> -#include <devices.h> +#include <stdio_dev.h> #include <environment.h> #include <malloc.h> #include <net.h> @@ -354,8 +354,8 @@ void board_init_r(gd_t * id, ulong dest_addr) /* relocate environment function pointers etc. */ env_relocate(); - /* Initialize devices */ - devices_init(); + /* Initialize stdio devices */ + stdio_init(); jumptable_init(); /* Initialize the console (after the relocation and devices init) */ diff --git a/lib_blackfin/post.c b/lib_blackfin/post.c index 35ccd3c..faf6b96 100644 --- a/lib_blackfin/post.c +++ b/lib_blackfin/post.c @@ -22,7 +22,7 @@ */ #include <common.h> -#include <console.h> +#include <stdio_dev.h> #include <watchdog.h> #include <post.h> |