ARM: Warn about not implementing MPU translation, not panic about MMU.
We'll start out with a stbu version of PMSA and switch over to VMSA for the full implementation.
This commit is contained in:
parent
6fb5189c47
commit
683421e0c6
1 changed files with 2 additions and 1 deletions
|
@ -317,7 +317,8 @@ TLB::translateAtomic(RequestPtr req, ThreadContext *tc, Mode mode)
|
|||
req->setPaddr(vaddr);
|
||||
return NoFault;
|
||||
}
|
||||
panic("MMU translation not implemented\n");
|
||||
warn_once("MPU translation not implemented\n");
|
||||
req->setPaddr(vaddr);
|
||||
return NoFault;
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue