From patchwork Fri May 6 12:00:36 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [6/7] PPC MPC7544DS: Use new TLB helper function Date: Fri, 06 May 2011 02:00:36 -0000 From: Alexander Graf X-Patchwork-Id: 94367 Message-Id: <1304683237-26177-7-git-send-email-agraf@suse.de> To: QEMU-devel Developers Cc: Scott Wood , "Edgar E. Iglesias" , Liu Yu Now that we have some nice helpers that can find us a TLB entry, let's use that on the machine initialization code, so we don't need to know about the internals of the TLB array. Signed-off-by: Alexander Graf --- hw/ppce500_mpc8544ds.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/ppce500_mpc8544ds.c b/hw/ppce500_mpc8544ds.c index 44d6440..4120977 100644 --- a/hw/ppce500_mpc8544ds.c +++ b/hw/ppce500_mpc8544ds.c @@ -179,7 +179,7 @@ static void mmubooke_create_initial_mapping(CPUState *env, target_ulong va, target_phys_addr_t pa) { - ppcemb_tlb_t *tlb = &env->tlb[512].tlbe; + ppcemb_tlb_t *tlb = booke206_get_tlbe(env, 1, 0, 0); tlb->attr = 0; tlb->prot = PAGE_VALID | ((PAGE_READ | PAGE_WRITE | PAGE_EXEC) << 4);