summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/mpc55xxevb/console/console-generic.c
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/libbsp/powerpc/mpc55xxevb/console/console-generic.c
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/libbsp/powerpc/mpc55xxevb/console/console-generic.c')
-rw-r--r--c/src/lib/libbsp/powerpc/mpc55xxevb/console/console-generic.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/c/src/lib/libbsp/powerpc/mpc55xxevb/console/console-generic.c b/c/src/lib/libbsp/powerpc/mpc55xxevb/console/console-generic.c
index 2c79545f20..71385adf2b 100644
--- a/c/src/lib/libbsp/powerpc/mpc55xxevb/console/console-generic.c
+++ b/c/src/lib/libbsp/powerpc/mpc55xxevb/console/console-generic.c
@@ -37,10 +37,6 @@ static void console_generic_char_out(char c)
const console_generic_callbacks *cb =
console_generic_info_table [minor].callbacks;
- if (c == '\n') {
- (*cb->poll_write)(minor, '\r');
- }
-
(*cb->poll_write)(minor, c);
}