[rtems commit] m68k/genmcf548x/console/console.c: Eliminate unused debug methods

Joel Sherrill joel at rtems.org
Mon Oct 13 15:23:38 UTC 2014


Module:    rtems
Branch:    master
Commit:    ce1ba3048fe8593b032534fd68e80b1c6d3754ea
Changeset: http://git.rtems.org/rtems/commit/?id=ce1ba3048fe8593b032534fd68e80b1c6d3754ea

Author:    Joel Sherrill <joel.sherrill at oarcorp.com>
Date:      Sun Oct 12 08:52:58 2014 -0500

m68k/genmcf548x/console/console.c: Eliminate unused debug methods

---

 c/src/lib/libbsp/m68k/genmcf548x/console/console.c |   23 --------------------
 1 files changed, 0 insertions(+), 23 deletions(-)

diff --git a/c/src/lib/libbsp/m68k/genmcf548x/console/console.c b/c/src/lib/libbsp/m68k/genmcf548x/console/console.c
index c5aa359..e85b934 100644
--- a/c/src/lib/libbsp/m68k/genmcf548x/console/console.c
+++ b/c/src/lib/libbsp/m68k/genmcf548x/console/console.c
@@ -832,26 +832,3 @@ rtems_device_driver console_control(
 {
     return( rtems_termios_ioctl (arg) );
 }
-
-
-int DEBUG_OUTCHAR(int c)
-{
-    if(c == '\n')
-        DEBUG_OUTCHAR('\r');
-    _BSP_null_char(c);
-    return c;
-}
-void DEBUG_OUTSTR(const char *msg)
-{
-    while (*msg)
-        DEBUG_OUTCHAR(*msg++);
-}
-void DEBUG_OUTNUM(int i)
-{
-    int n;
-    static const char map[] = "0123456789ABCDEF";
-    DEBUG_OUTCHAR(' ');
-    for (n = 28 ; n >= 0 ; n -= 4)
-        DEBUG_OUTCHAR(map[(i >> n) & 0xF]);
-}
-



More information about the vc mailing list