summaryrefslogtreecommitdiffstats
path: root/bsps/shared/grlib/uart/apbuart_cons.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2021-06-10 15:01:49 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-06-17 12:58:33 +0200
commitaf69a8693b4f4a7f1ea41d2948c3550a46ae6e17 (patch)
tree70396dad726a196df3699357ab439390604c0502 /bsps/shared/grlib/uart/apbuart_cons.c
parentgrlib: Remove NL -> CR in apbuart_outbyte_polled() (diff)
downloadrtems-af69a8693b4f4a7f1ea41d2948c3550a46ae6e17.tar.bz2
grlib: Add apbuart_outbyte_wait()
Diffstat (limited to 'bsps/shared/grlib/uart/apbuart_cons.c')
-rw-r--r--bsps/shared/grlib/uart/apbuart_cons.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bsps/shared/grlib/uart/apbuart_cons.c b/bsps/shared/grlib/uart/apbuart_cons.c
index e7dda50565..a0a265ab31 100644
--- a/bsps/shared/grlib/uart/apbuart_cons.c
+++ b/bsps/shared/grlib/uart/apbuart_cons.c
@@ -641,7 +641,7 @@ static void write_polled(
int nwrite = 0;
while (nwrite < len) {
- apbuart_outbyte_polled(uart->regs, *buf++, 0);
+ apbuart_outbyte_polled(uart->regs, *buf++);
nwrite++;
}
}