2009-05-18 Joel Sherrill <joel.sherrill@OARcorp.com>

* console/console-io.c: Fix typo.
This commit is contained in:
Joel Sherrill
2009-05-18 17:54:49 +00:00
parent 6ef192c2dd
commit 36980c10c9
2 changed files with 7 additions and 3 deletions
+4
View File
@@ -1,3 +1,7 @@
2009-05-18 Joel Sherrill <joel.sherrill@OARcorp.com>
* console/console-io.c: Fix typo.
2009-04-28 Chris Johns <chrisj@rtems.org>
* start/start.S: Update for boot_card command line change.
@@ -58,7 +58,7 @@ int console_inbyte_nonblocking(
#include <rtems/bspIo.h>
void H8simBSP_output_char(char c) { console_outbyte_polled( 0, c ); }
void M32CsimBSP_output_char(char c) { console_outbyte_polled( 0, c ); }
BSP_output_char_function_type BSP_output_char = H8simBSP_output_char;
BSP_polling_getchar_function_type BSP_poll_char = NULL;
BSP_output_char_function_type BSP_output_char = M32CsimBSP_output_char;
BSP_polling_getchar_function_type BSP_poll_char = NULL;