sim-card
/
qemu
Archived
10
0
Fork 0

CRIS: Remove unused pfn member from mmu translation results.

Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6160 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
edgar_igl 2009-01-04 15:42:04 +00:00
parent 4c5e8c5ce8
commit bf91ada56a
2 changed files with 1 additions and 6 deletions

View File

@ -285,7 +285,7 @@ static int cris_mmu_translate_page(struct cris_mmu_result_t *res,
env->sregs[SFR_RW_MM_TLB_SEL],
env->regs[R_SP], env->pregs[PR_USP], env->ksp));
res->pfn = tlb_pfn;
res->phy = tlb_pfn << TARGET_PAGE_BITS;
return !match;
}
@ -360,11 +360,7 @@ int cris_mmu_translate(struct cris_mmu_result_t *res,
res->prot = PAGE_BITS;
}
else
{
miss = cris_mmu_translate_page(res, env, vaddr, rw, is_user);
phy = (res->pfn << 13);
res->phy = phy;
}
done:
env->pregs[PR_SRS] = old_srs;
return miss;

View File

@ -6,7 +6,6 @@
struct cris_mmu_result_t
{
uint32_t phy;
uint32_t pfn;
int prot;
int bf_vec;
};