diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2021-05-18 15:11:35 -0500 |
---|---|---|
committer | David Gibson <david@gibson.dropbear.id.au> | 2021-05-19 12:52:07 +1000 |
commit | 40079604ae79ec9969b9ed45261ab41422ab0b84 (patch) | |
tree | 5fdeb929dd3a0c9974b712952fc7b27750ec525a | |
parent | 05c3ef145121f0cb1f7b06884025a47ce1136cee (diff) | |
download | qemu-40079604ae79ec9969b9ed45261ab41422ab0b84.zip qemu-40079604ae79ec9969b9ed45261ab41422ab0b84.tar.gz qemu-40079604ae79ec9969b9ed45261ab41422ab0b84.tar.bz2 |
target/ppc: Remove type argument from mmubooke_get_physical_address
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>
-rw-r--r-- | target/ppc/mmu_helper.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/target/ppc/mmu_helper.c b/target/ppc/mmu_helper.c index 4e5cc11..7535a1a 100644 --- a/target/ppc/mmu_helper.c +++ b/target/ppc/mmu_helper.c @@ -789,8 +789,7 @@ found_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; @@ -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, |