summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-09-17 14:28:41 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-09-17 14:28:41 +0000
commita6d5ea6b6b49d778d4a634fa18a1f59508d5ad62 (patch)
tree211eb342b743330f4fcb53363148ea742933d32e /cpukit
parent2007-09-17 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-a6d5ea6b6b49d778d4a634fa18a1f59508d5ad62.tar.bz2
2007-09-17 Joel Sherrill <joel.sherrill@oarcorp.com>
* libmisc/dumpbuf/dumpbuf.c: Use printk.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/ChangeLog4
-rw-r--r--cpukit/libmisc/dumpbuf/dumpbuf.c3
2 files changed, 6 insertions, 1 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 4aee609cd1..744e1d564d 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,7 @@
+2007-09-17 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * libmisc/dumpbuf/dumpbuf.c: Use printk.
+
2007-09-16 Ralf Corsépius <ralf.corsepius@rtems.org>
* libnetworking/net/ppp_defs.h: Include rtems/stdint.h.
diff --git a/cpukit/libmisc/dumpbuf/dumpbuf.c b/cpukit/libmisc/dumpbuf/dumpbuf.c
index c5c4746c16..7a99e4e322 100644
--- a/cpukit/libmisc/dumpbuf/dumpbuf.c
+++ b/cpukit/libmisc/dumpbuf/dumpbuf.c
@@ -17,6 +17,7 @@
#include <string.h>
#include <ctype.h>
#include <rtems/dumpbuf.h>
+#include <rtems/bspIo.h>
/*
* Put the body below rtems_print_buffer so it won't get inlined.
@@ -75,5 +76,5 @@ static inline void Dump_Line(
strcat( line_buffer, "|\n" );
- fprintf(stdout, line_buffer );
+ printk( line_buffer );
}