diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2021-05-18 15:11:37 -0500 |
---|---|---|
committer | David Gibson <david@gibson.dropbear.id.au> | 2021-05-19 12:52:07 +1000 |
commit | e543f946856da31c3a7a45ba193f106e042ad907 (patch) | |
tree | 83d9520794b7b352b5592d92265611f76dee768a /target/ppc | |
parent | 5507d626093ff3666c03a689e01c90a9989e0886 (diff) | |
download | qemu-e543f946856da31c3a7a45ba193f106e042ad907.zip qemu-e543f946856da31c3a7a45ba193f106e042ad907.tar.gz qemu-e543f946856da31c3a7a45ba193f106e042ad907.tar.bz2 |
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>
Diffstat (limited to 'target/ppc')
-rw-r--r-- | target/ppc/mmu_helper.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/ppc/mmu_helper.c b/target/ppc/mmu_helper.c index 144a14a..37986c5 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 */ |