summaryrefslogtreecommitdiffstats
path: root/target/ppc/mmu_helper.c
diff options
context:
space:
mode:
authorRichard Henderson2021-05-18 22:11:33 +0200
committerDavid Gibson2021-05-19 04:52:07 +0200
commit61d2cde86737ec1a38f076bbc2a59f2c717e1afd (patch)
tree6578d23719c6ee35c53be9228e1d2a26128dfa7f /target/ppc/mmu_helper.c
parenttarget/ppc: Remove type argument from get_bat_6xx_tlb (diff)
downloadqemu-61d2cde86737ec1a38f076bbc2a59f2c717e1afd.tar.gz
qemu-61d2cde86737ec1a38f076bbc2a59f2c717e1afd.tar.xz
qemu-61d2cde86737ec1a38f076bbc2a59f2c717e1afd.zip
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>
Diffstat (limited to 'target/ppc/mmu_helper.c')
-rw-r--r--target/ppc/mmu_helper.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/target/ppc/mmu_helper.c b/target/ppc/mmu_helper.c
index 0eba8302ee..1426973b4d 100644
--- a/target/ppc/mmu_helper.c
+++ b/target/ppc/mmu_helper.c
@@ -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,
target_ulong address,
- MMUAccessType access_type,
- int type)
+ MMUAccessType access_type)
{
ppcemb_tlb_t *tlb;
hwaddr raddr;
@@ -1426,8 +1425,7 @@ static int get_physical_address_wtlb(CPUPPCState *env, mmu_ctx_t *ctx,
if (real_mode) {
ret = check_physical(env, ctx, eaddr, access_type);
} else {
- ret = mmu40x_get_physical_address(env, ctx, eaddr,
- access_type, type);
+ ret = mmu40x_get_physical_address(env, ctx, eaddr, access_type);
}
break;
case POWERPC_MMU_BOOKE: