target/ppc: Remove type argument from mmu40x_get_physical_address
It is no longer used. Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20210518201146.794854-12-richard.henderson@linaro.org> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
parent
590fc3c01d
commit
61d2cde867
@ -662,8 +662,7 @@ static inline void ppc4xx_tlb_invalidate_all(CPUPPCState *env)
|
|||||||
|
|
||||||
static int mmu40x_get_physical_address(CPUPPCState *env, mmu_ctx_t *ctx,
|
static int mmu40x_get_physical_address(CPUPPCState *env, mmu_ctx_t *ctx,
|
||||||
target_ulong address,
|
target_ulong address,
|
||||||
MMUAccessType access_type,
|
MMUAccessType access_type)
|
||||||
int type)
|
|
||||||
{
|
{
|
||||||
ppcemb_tlb_t *tlb;
|
ppcemb_tlb_t *tlb;
|
||||||
hwaddr raddr;
|
hwaddr raddr;
|
||||||
@ -1426,8 +1425,7 @@ static int get_physical_address_wtlb(CPUPPCState *env, mmu_ctx_t *ctx,
|
|||||||
if (real_mode) {
|
if (real_mode) {
|
||||||
ret = check_physical(env, ctx, eaddr, access_type);
|
ret = check_physical(env, ctx, eaddr, access_type);
|
||||||
} else {
|
} else {
|
||||||
ret = mmu40x_get_physical_address(env, ctx, eaddr,
|
ret = mmu40x_get_physical_address(env, ctx, eaddr, access_type);
|
||||||
access_type, type);
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case POWERPC_MMU_BOOKE:
|
case POWERPC_MMU_BOOKE:
|
||||||
|
Loading…
Reference in New Issue
Block a user