summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu/powerpc
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-09-08 10:38:46 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2017-09-12 09:57:53 +0200
commit1bc0ad2e12e9e523a9b9043ac47254a0597826bf (patch)
tree3ce927bb1e48b6961d64f235162fa823cbac815d /c/src/lib/libcpu/powerpc
parentposix: Use mutex object itself for condvar (diff)
downloadrtems-1bc0ad2e12e9e523a9b9043ac47254a0597826bf.tar.bz2
Simplify and unify BSP_output_char
The BSP_output_char should output a char and not mingle with high level processing, e.g. '\n' to '\r\n' translation. Move this translation to rtems_putc(). Remove it from all the BSP_output_char implementations. Close #3122.
Diffstat (limited to 'c/src/lib/libcpu/powerpc')
-rw-r--r--c/src/lib/libcpu/powerpc/mpc55xx/esci/esci.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/c/src/lib/libcpu/powerpc/mpc55xx/esci/esci.c b/c/src/lib/libcpu/powerpc/mpc55xx/esci/esci.c
index a500743bcd..63791b819b 100644
--- a/c/src/lib/libcpu/powerpc/mpc55xx/esci/esci.c
+++ b/c/src/lib/libcpu/powerpc/mpc55xx/esci/esci.c
@@ -659,9 +659,6 @@ static void mpc55xx_esci_output_char( char c)
mpc55xx_esci_driver_entry *e = &mpc55xx_esci_driver_table [MPC55XX_ESCI_CONSOLE_MINOR];
mpc55xx_esci_interrupts_disable( e);
- if (c == '\n') {
- mpc55xx_esci_write_char( e, '\r');
- }
mpc55xx_esci_write_char( e, c);
mpc55xx_esci_interrupts_enable( e);
}