Skip to content
Snippets Groups Projects
Commit 81b0b0d9 authored by Bin Meng's avatar Bin Meng Committed by Tom Rini
Browse files

openrisc: Fix build errors


With kernel.org toolchain, it reports:

  CC      arch/openrisc/lib/board.o
  arch/openrisc/lib/board.c:56:2: error: 'console_init_f' undeclared here (not in a function)
  arch/openrisc/lib/board.c: In function 'board_init':
  arch/openrisc/lib/board.c:120:2: warning: implicit declaration of function 'console_init_r'
  make[1]: *** [arch/openrisc/lib/board.o] Error 1
  make: *** [arch/openrisc/lib] Error 2

Include console.h will fix this.

Signed-off-by: default avatarBin Meng <bmeng.cn@gmail.com>
parent e6655d7c
No related branches found
No related tags found
No related merge requests found
...@@ -13,6 +13,7 @@ ...@@ -13,6 +13,7 @@
*/ */
#include <common.h> #include <common.h>
#include <console.h>
#include <stdio_dev.h> #include <stdio_dev.h>
#include <watchdog.h> #include <watchdog.h>
#include <malloc.h> #include <malloc.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment