summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@ingics.com>2014-01-16 15:01:49 +0800
committerThomas Chou <thomas@wytron.com.tw>2014-02-11 15:49:19 +0800
commit18a6bcc139548f8018494ff60519948fa53e2141 (patch)
tree2f158dbf5545c6b156ce9b29bc5a64713aefa3c8 /drivers
parent22a240c32c1340183fce12867ae5f8736b92a638 (diff)
downloadblackbird-obmc-uboot-18a6bcc139548f8018494ff60519948fa53e2141.tar.gz
blackbird-obmc-uboot-18a6bcc139548f8018494ff60519948fa53e2141.zip
serial: opencores_yanu: Fix build error
Fix build error due to missing include of serial.h and a trivial typo. Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/serial/opencores_yanu.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/serial/opencores_yanu.c b/drivers/serial/opencores_yanu.c
index 8de2eca2ac..80e9ae53bc 100644
--- a/drivers/serial/opencores_yanu.c
+++ b/drivers/serial/opencores_yanu.c
@@ -8,6 +8,7 @@
#include <watchdog.h>
#include <asm/io.h>
#include <nios2-yanu.h>
+#include <serial.h>
DECLARE_GLOBAL_DATA_PTR;
@@ -154,7 +155,7 @@ static int oc_serial_tstc(void)
((1 << YANU_RFIFO_CHARS_N) - 1)) > 0);
}
-statoc int oc_serial_getc(void)
+static int oc_serial_getc(void)
{
while (serial_tstc() == 0)
WATCHDOG_RESET ();
OpenPOWER on IntegriCloud