From ce1ba3048fe8593b032534fd68e80b1c6d3754ea Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Sun, 12 Oct 2014 08:52:58 -0500 Subject: m68k/genmcf548x/console/console.c: Eliminate unused debug methods --- c/src/lib/libbsp/m68k/genmcf548x/console/console.c | 23 ---------------------- 1 file changed, 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 c5aa359d5d..e85b9345d6 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]); -} - -- cgit v1.2.3