bsp/mvme167: Remove unused parameter

This commit is contained in:
Sebastian Huber
2012-11-06 11:50:59 +01:00
parent a9e5e747f0
commit e85476b5a2
3 changed files with 3 additions and 9 deletions

View File

@@ -23,7 +23,7 @@
#include <rtems.h> #include <rtems.h>
void page_table_teardown( void ); void page_table_teardown( void );
void page_table_init( rtems_configuration_table *config_table ); void page_table_init( void );
enum { enum {
CACHE_WRITE_THROUGH, CACHE_WRITE_THROUGH,

View File

@@ -90,9 +90,8 @@ void bsp_start( void )
/* /*
* Initialize address translation * 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, * If the application has not overriden the default User_extension_table,

View File

@@ -58,16 +58,11 @@
* is mapped to the physical address range 0xFF000000--0xFFFFFFFF as * is mapped to the physical address range 0xFF000000--0xFFFFFFFF as
* caching disabled, serialized access. * caching disabled, serialized access.
* *
* Input parameters:
* config_table - ignored for now
*
* Output parameters: NONE * Output parameters: NONE
* *
* Return values: NONE * Return values: NONE
*/ */
void page_table_init( void page_table_init( void )
rtems_configuration_table *config_table
)
{ {
unsigned char j1; /* State of J1 jumpers */ unsigned char j1; /* State of J1 jumpers */
register unsigned long dtt0; /* Content of dtt0 */ register unsigned long dtt0; /* Content of dtt0 */