summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-09-10 14:20:55 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-09-10 14:20:55 +0000
commit891a8254905246f9b645faff8f80109955841570 (patch)
treeed5a41e86fc071f81d093e8be4d75a71531e5e6e /cpukit/libcsupport
parent2007-09-10 Alain Schaefer <alani@easc.ch> (diff)
downloadrtems-891a8254905246f9b645faff8f80109955841570.tar.bz2
2007-09-10 Joel Sherrill <joel.sherrill@OARcorp.com>
* libcsupport/src/printk.c: Remove unnecessary comments.
Diffstat (limited to '')
-rw-r--r--cpukit/libcsupport/src/printk.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/cpukit/libcsupport/src/printk.c b/cpukit/libcsupport/src/printk.c
index 21f077ef16..811132d041 100644
--- a/cpukit/libcsupport/src/printk.c
+++ b/cpukit/libcsupport/src/printk.c
@@ -74,9 +74,6 @@ vprintk(const char *fmt, va_list ap)
{
char c, *str;
int lflag, base, sign, width, lead;
- /* unsigned int level; */
-
- /* _CPU_ISR_Disable(level); */
for (; *fmt != '\0'; fmt++)
{
@@ -132,8 +129,6 @@ vprintk(const char *fmt, va_list ap)
BSP_output_char(*fmt);
}
}
- /* _CPU_ISR_Enable(level); */
-
} /* vprintk */
void