projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
05c3ef1
)
target/ppc: Remove type argument from mmubooke_get_physical_address
author
Richard Henderson
<richard.henderson@linaro.org>
Tue, 18 May 2021 20:11:35 +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-14-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 4e5cc11b4480ead8814af584ad805d9f9a51cb58..7535a1aa7d88f314b0ae82e23764dc9f9210f585 100644
(file)
--- 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,