summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/sh/shsim/console/console-debugio.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/sh/shsim/console/console-debugio.c')
-rw-r--r--c/src/lib/libbsp/sh/shsim/console/console-debugio.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/c/src/lib/libbsp/sh/shsim/console/console-debugio.c b/c/src/lib/libbsp/sh/shsim/console/console-debugio.c
index 38b6c8f698..0a81dbe45b 100644
--- a/c/src/lib/libbsp/sh/shsim/console/console-debugio.c
+++ b/c/src/lib/libbsp/sh/shsim/console/console-debugio.c
@@ -1,9 +1,6 @@
/**
* @file
* @brief Stub printk() support
- *
- * This file contains a stub for the required printk() support.
- * It is NOT functional!!!
*/
/*
@@ -27,7 +24,7 @@ void console_outbyte_polled(
char ch
);
-void BSP_output_char_f(char c)
+static void BSP_output_char_f(char c)
{
console_outbyte_polled( 0, c );
}