2002-11-01 Joel Sherrill <joel@OARcorp.com>

* console/conscfg.c, startup/bspstart.c: Removed warnings.
This commit is contained in:
Joel Sherrill
2002-11-01 21:52:04 +00:00
parent f799d21cea
commit faab731609
3 changed files with 6 additions and 3 deletions

View File

@@ -1,3 +1,7 @@
2002-11-01 Joel Sherrill <joel@OARcorp.com>
* console/conscfg.c, startup/bspstart.c: Removed warnings.
2002-10-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* .cvsignore: Reformat.

View File

@@ -56,7 +56,7 @@ console_tbl Console_Port_Tbl[] = {
mc68681_set_register_2, /* setRegister */
NULL, /* unused */ /* getData */
NULL, /* unused */ /* setData */
mc68681_baud_rate_table, /* ulClock */
(unsigned32)mc68681_baud_rate_table, /* ulClock */
MC68681_VECTOR /* ulIntVector */
}
};

View File

@@ -54,7 +54,6 @@ void bsp_predriver_hook(void)
void bsp_start( void )
{
unsigned8 dummy;
extern void * _WorkspaceBase;
extern void *_RamSize;
extern unsigned long _M68k_Ramsize;
@@ -83,6 +82,6 @@ void bsp_start( void )
#include <rtems/bspIo.h>
int debug_putc( char c ) { write( 2, &c, 1 ); return 0; }
void debug_putc( char c ) { write( 2, &c, 1 ); }
BSP_output_char_function_type BSP_output_char = debug_putc;
BSP_polling_getchar_function_type BSP_poll_char = NULL;