summaryrefslogtreecommitdiffstats
path: root/bsps/riscv/griscv
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/riscv/griscv
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/riscv/griscv')
-rw-r--r--bsps/riscv/griscv/console/printk_support.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bsps/riscv/griscv/console/printk_support.c b/bsps/riscv/griscv/console/printk_support.c
index e789924e4f..4c8acd55c5 100644
--- a/bsps/riscv/griscv/console/printk_support.c
+++ b/bsps/riscv/griscv/console/printk_support.c
@@ -100,7 +100,7 @@ static void bsp_out_char(char c)
*/
}
- apbuart_outbyte_polled(grlib_debug_uart, c, 1, 1);
+ apbuart_outbyte_polled(grlib_debug_uart, c, 1);
}
/*