forked from Imagelibrary/rtems
2001-10-11 Joel Sherrill <joel@OARcorp.com>
* console/85c30.c, startup/bspstart.c: Fix references to delay() and delay_in_bus_cycles() to add rtems_bsp_ prefix.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2001-10-11 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* console/85c30.c, startup/bspstart.c: Fix references to delay() and
|
||||
delay_in_bus_cycles() to add rtems_bsp_ prefix.
|
||||
|
||||
2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||
|
||||
* include/Makefile.am: Use 'TMPINSTALL_FILES ='.
|
||||
|
||||
@@ -74,11 +74,11 @@ static unsigned char Read_85c30_register(
|
||||
|
||||
*csr = register_number;
|
||||
|
||||
delay_in_bus_cycles( 40 );
|
||||
rtems_bsp_delay_in_bus_cycles( 40 );
|
||||
|
||||
Data = *csr;
|
||||
|
||||
delay_in_bus_cycles( 40 );
|
||||
rtems_bsp_delay_in_bus_cycles( 40 );
|
||||
|
||||
return Data;
|
||||
}
|
||||
@@ -96,11 +96,11 @@ static void Write_85c30_register(
|
||||
{
|
||||
*csr = register_number;
|
||||
|
||||
delay_in_bus_cycles( 40 );
|
||||
rtems_bsp_delay_in_bus_cycles( 40 );
|
||||
|
||||
*csr = data;
|
||||
|
||||
delay_in_bus_cycles( 40 );
|
||||
rtems_bsp_delay_in_bus_cycles( 40 );
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -193,7 +193,7 @@ void bsp_start( void )
|
||||
unsigned int msr_value = 0x0000;
|
||||
volatile rtems_unsigned32 *ptr;
|
||||
|
||||
delay( 1000 );
|
||||
rtems_bsp_delay( 1000 );
|
||||
|
||||
/*
|
||||
* Zero out lots of memory
|
||||
|
||||
Reference in New Issue
Block a user