mirror of
https://github.com/qemu/qemu.git
synced 2024-12-12 21:23:36 +08:00
target/ppc: Remove type argument for mmubooke206_get_physical_address
It is no longer used. Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20210518201146.794854-16-richard.henderson@linaro.org> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
parent
5507d62609
commit
e543f94685
@ -1026,7 +1026,7 @@ found_tlb:
|
|||||||
static int mmubooke206_get_physical_address(CPUPPCState *env, mmu_ctx_t *ctx,
|
static int mmubooke206_get_physical_address(CPUPPCState *env, mmu_ctx_t *ctx,
|
||||||
target_ulong address,
|
target_ulong address,
|
||||||
MMUAccessType access_type,
|
MMUAccessType access_type,
|
||||||
int type, int mmu_idx)
|
int mmu_idx)
|
||||||
{
|
{
|
||||||
ppcmas_tlb_t *tlb;
|
ppcmas_tlb_t *tlb;
|
||||||
hwaddr raddr;
|
hwaddr raddr;
|
||||||
@ -1398,7 +1398,7 @@ static int get_physical_address_wtlb(CPUPPCState *env, mmu_ctx_t *ctx,
|
|||||||
break;
|
break;
|
||||||
case POWERPC_MMU_BOOKE206:
|
case POWERPC_MMU_BOOKE206:
|
||||||
ret = mmubooke206_get_physical_address(env, ctx, eaddr, access_type,
|
ret = mmubooke206_get_physical_address(env, ctx, eaddr, access_type,
|
||||||
type, mmu_idx);
|
mmu_idx);
|
||||||
break;
|
break;
|
||||||
case POWERPC_MMU_MPC8xx:
|
case POWERPC_MMU_MPC8xx:
|
||||||
/* XXX: TODO */
|
/* XXX: TODO */
|
||||||
|
Loading…
Reference in New Issue
Block a user