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:
Gabe Black 2010-06-02 12:58:10 -05:00
parent 6fb5189c47
commit 683421e0c6

View file

@ -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;