projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
590fc3c
)
target/ppc: Remove type argument from mmu40x_get_physical_address
author
Richard Henderson
<richard.henderson@linaro.org>
Tue, 18 May 2021 20:11:33 +0000
(15:11 -0500)
committer
David Gibson
<david@gibson.dropbear.id.au>
Wed, 19 May 2021 02:52:07 +0000
(12:52 +1000)
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>
target/ppc/mmu_helper.c
patch
|
blob
|
history
diff --git
a/target/ppc/mmu_helper.c
b/target/ppc/mmu_helper.c
index 0eba8302ee326dcf11782161892d29105dcd4e6f..1426973b4d9822653d0d235e8b19bd9a2f526a00 100644
(file)
--- 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: