forked from Imagelibrary/rtems
bsp/mvme167: Remove unused parameter
This commit is contained in:
@@ -23,7 +23,7 @@
|
||||
#include <rtems.h>
|
||||
|
||||
void page_table_teardown( void );
|
||||
void page_table_init( rtems_configuration_table *config_table );
|
||||
void page_table_init( void );
|
||||
|
||||
enum {
|
||||
CACHE_WRITE_THROUGH,
|
||||
|
||||
@@ -90,9 +90,8 @@ void bsp_start( void )
|
||||
|
||||
/*
|
||||
* Initialize address translation
|
||||
* May need to pass the multiprocessor configuration table.
|
||||
*/
|
||||
page_table_init( &Configuration );
|
||||
page_table_init();
|
||||
|
||||
/*
|
||||
* If the application has not overriden the default User_extension_table,
|
||||
|
||||
@@ -58,16 +58,11 @@
|
||||
* is mapped to the physical address range 0xFF000000--0xFFFFFFFF as
|
||||
* caching disabled, serialized access.
|
||||
*
|
||||
* Input parameters:
|
||||
* config_table - ignored for now
|
||||
*
|
||||
* Output parameters: NONE
|
||||
*
|
||||
* Return values: NONE
|
||||
*/
|
||||
void page_table_init(
|
||||
rtems_configuration_table *config_table
|
||||
)
|
||||
void page_table_init( void )
|
||||
{
|
||||
unsigned char j1; /* State of J1 jumpers */
|
||||
register unsigned long dtt0; /* Content of dtt0 */
|
||||
|
||||
Reference in New Issue
Block a user