2005-11-09 Ralf Corsepius <ralf.corsepius@rtems.org>

* shared/startup/bspstart.c: Eliminate obsolete types.
This commit is contained in:
Ralf Corsepius
2005-11-09 16:53:30 +00:00
parent c29d03e942
commit ac3a37d769
2 changed files with 6 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
2005-11-09 Ralf Corsepius <ralf.corsepius@rtems.org>
* shared/startup/bspstart.c: Eliminate obsolete types.
2005-11-03 Till Straumann <strauman@slac.stanford.edu>
* Makefile.am, motorola_powerpc/Makefile.am, mvme5500/Makefile.am,

View File

@@ -171,8 +171,8 @@ unsigned int EUMBBAR;
* Processor Address Map B (CHRP).
*/
unsigned int get_eumbbar() {
out_le32( (volatile unsigned32*)0xfec00000, 0x80000078 );
return in_le32( (volatile unsigned32*)0xfee00000 );
out_le32( 0xfec00000, 0x80000078 );
return in_le32( 0xfee00000 );
}
#endif