projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
91e615a
)
target/ppc: Remove type argument from ppc6xx_tlb_pte_check
author
Richard Henderson
<richard.henderson@linaro.org>
Tue, 18 May 2021 20:11:30 +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-9-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 2c813af92460ac29add1c774bbdc40588f99a3f6..0c10677adeb5e33625b6bb746468c04f7ac10187 100644
(file)
--- a/
target/ppc/mmu_helper.c
+++ b/
target/ppc/mmu_helper.c
@@
-134,7
+134,7
@@
static int check_prot(int prot, MMUAccessType access_type)
static int ppc6xx_tlb_pte_check(mmu_ctx_t *ctx, target_ulong pte0,
target_ulong pte1, int h,
- MMUAccessType access_type
, int type
)
+ MMUAccessType access_type)
{
target_ulong ptem, mmask;
int access, ret, pteh, ptev, pp;
@@
-316,7
+316,7
@@
static int ppc6xx_tlb_check(CPUPPCState *env, mmu_ctx_t *ctx,
access_type == MMU_DATA_STORE ? 'S' : 'L',
type == ACCESS_CODE ? 'I' : 'D');
switch (ppc6xx_tlb_pte_check(ctx, tlb->pte0, tlb->pte1,
- 0, access_type
, type
)) {
+ 0, access_type)) {
case -3:
/* TLB inconsistency */
return -1;