2007-09-06 Joel Sherrill <joel.sherrill@OARcorp.com>

* console/debugputs.c: Add missing include file.
This commit is contained in:
Joel Sherrill
2007-09-06 15:34:58 +00:00
parent 30a8915ffd
commit f752c246fa
2 changed files with 10 additions and 0 deletions

View File

@@ -1,3 +1,7 @@
2007-09-06 Joel Sherrill <joel.sherrill@OARcorp.com>
* console/debugputs.c: Add missing include file.
2007-09-06 Daniel Hellstrom <daniel@gaisler.com>
* amba/amba.c: Add missing part of previous patch.

View File

@@ -77,6 +77,12 @@ static void bsp_out_char(char c)
console_outbyte_polled(0, c);
}
/*
* To support printk
*/
#include <rtems/bspIo.h>
BSP_output_char_function_type BSP_output_char = bsp_out_char;
static char bsp_in_char(void)