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 14:51:38 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-06-17 12:58:33 +0200
commit85febe7b10f24f87761e4cb206c3ade1f727605e (patch)
tree71cce861d9ddc609e728f9fa2d5e57e808843773 /bsps/shared/grlib/uart/apbuart_cons.c
parentbsps/leon3: Auto initialization for printk() (diff)
downloadrtems-85febe7b10f24f87761e4cb206c3ade1f727605e.tar.bz2
grlib: Remove NL -> CR in apbuart_outbyte_polled()
This is already done in rtems_putc().
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 e4d026a4cc..e7dda50565 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, 0);
+ apbuart_outbyte_polled(uart->regs, *buf++, 0);
nwrite++;
}
}