Skip to content

Commit

Permalink
target/ppc: Remove type argument from mmubooke_get_physical_address
Browse files Browse the repository at this point in the history
It is no longer used.

Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20210518201146.794854-14-richard.henderson@linaro.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
  • Loading branch information
rth7680 authored and dgibson committed May 19, 2021
1 parent 05c3ef1 commit 4007960
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions target/ppc/mmu_helper.c
Expand Up @@ -789,8 +789,7 @@ static int mmubooke_check_tlb(CPUPPCState *env, ppcemb_tlb_t *tlb,

static int mmubooke_get_physical_address(CPUPPCState *env, mmu_ctx_t *ctx,
target_ulong address,
MMUAccessType access_type,
int type)
MMUAccessType access_type)
{
ppcemb_tlb_t *tlb;
hwaddr raddr;
Expand Down Expand Up @@ -1411,8 +1410,7 @@ static int get_physical_address_wtlb(CPUPPCState *env, mmu_ctx_t *ctx,
}
break;
case POWERPC_MMU_BOOKE:
ret = mmubooke_get_physical_address(env, ctx, eaddr,
access_type, type);
ret = mmubooke_get_physical_address(env, ctx, eaddr, access_type);
break;
case POWERPC_MMU_BOOKE206:
ret = mmubooke206_get_physical_address(env, ctx, eaddr, access_type,
Expand Down

0 comments on commit 4007960

Please sign in to comment.