2005-02-15 Ralf Corsepius <ralf.corsepius@rtems.org>

* mpc8260/mmu/mmu.c: Use _CPU_MSR_GET instead of _CPU_MSR_Value.
	(Unify old/new-exception processing API).
This commit is contained in:
Ralf Corsepius
2005-02-15 06:06:19 +00:00
parent 7a99364b35
commit eca561c811
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2005-02-15 Ralf Corsepius <ralf.corsepius@rtems.org>
* mpc8260/mmu/mmu.c: Use _CPU_MSR_GET instead of _CPU_MSR_Value.
(Unify old/new-exception processing API).
2005-02-14 Ralf Corsepius <ralf.corsepius@rtems.org>
* rtems/powerpc/powerpc.h: Remove mpc603e specific

View File

@@ -121,7 +121,7 @@ void mmu_init( void )
/*
* Turn on address translation by setting MSR[IR] and MSR[DR].
*/
_CPU_MSR_Value( reg1 );
_CPU_MSR_GET( reg1 );
reg1 |= PPC_MSR_IR | PPC_MSR_DR;
_CPU_MSR_SET( reg1 );