From: Richard Henderson Date: Tue, 18 May 2021 20:11:37 +0000 (-0500) Subject: target/ppc: Remove type argument for mmubooke206_get_physical_address X-Git-Tag: v6.1.0-rc0~114^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e543f946856da31c3a7a45ba193f106e042ad907;p=thirdparty%2Fqemu.git target/ppc: Remove type argument for mmubooke206_get_physical_address It is no longer used. Signed-off-by: Richard Henderson Message-Id: <20210518201146.794854-16-richard.henderson@linaro.org> Signed-off-by: David Gibson --- diff --git a/target/ppc/mmu_helper.c b/target/ppc/mmu_helper.c index 144a14abd90..37986c59bab 100644 --- a/target/ppc/mmu_helper.c +++ b/target/ppc/mmu_helper.c @@ -1026,7 +1026,7 @@ found_tlb: static int mmubooke206_get_physical_address(CPUPPCState *env, mmu_ctx_t *ctx, target_ulong address, MMUAccessType access_type, - int type, int mmu_idx) + int mmu_idx) { ppcmas_tlb_t *tlb; hwaddr raddr; @@ -1398,7 +1398,7 @@ static int get_physical_address_wtlb(CPUPPCState *env, mmu_ctx_t *ctx, break; case POWERPC_MMU_BOOKE206: ret = mmubooke206_get_physical_address(env, ctx, eaddr, access_type, - type, mmu_idx); + mmu_idx); break; case POWERPC_MMU_MPC8xx: /* XXX: TODO */