projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
22a240c
)
serial: opencores_yanu: Fix build error
author
Axel Lin
<axel.lin@ingics.com>
Thu, 16 Jan 2014 07:01:49 +0000
(15:01 +0800)
committer
Thomas Chou
<thomas@wytron.com.tw>
Tue, 11 Feb 2014 07:49:19 +0000
(15:49 +0800)
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>
drivers/serial/opencores_yanu.c
patch
|
blob
|
history
diff --git
a/drivers/serial/opencores_yanu.c
b/drivers/serial/opencores_yanu.c
index 8de2eca2ac72c1ef32b6f2eb26c286fa2710fb47..80e9ae53bc9f13914fcd8a6e80c0532ad57393fe 100644
(file)
--- 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);
}
-stat
o
c int oc_serial_getc(void)
+stat
i
c int oc_serial_getc(void)
{
while (serial_tstc() == 0)
WATCHDOG_RESET ();