[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v7 01/61] target/ppc: Remove unused struct 'mmu_ctx_hash32'
|
From: |
BALATON Zoltan |
|
Subject: |
[PATCH v7 01/61] target/ppc: Remove unused struct 'mmu_ctx_hash32' |
|
Date: |
Mon, 13 May 2024 01:27:33 +0200 (CEST) |
From: "Dr. David Alan Gilbert" <dave@treblig.org>
I think it's use was removed by
Commit 5883d8b296 ("mmu-hash*: Don't use full ppc_hash{32,
64}_translate() path for get_phys_page_debug()")
Signed-off-by: Dr. David Alan Gilbert <dave@treblig.org>
Reviewed-by: BALATON Zoltan <balaton@eik.bme.hu>
Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu>
---
target/ppc/mmu-hash32.c | 6 ------
1 file changed, 6 deletions(-)
diff --git a/target/ppc/mmu-hash32.c b/target/ppc/mmu-hash32.c
index 6dfedab11d..da6e8b293c 100644
--- a/target/ppc/mmu-hash32.c
+++ b/target/ppc/mmu-hash32.c
@@ -37,12 +37,6 @@
# define LOG_BATS(...) do { } while (0)
#endif
-struct mmu_ctx_hash32 {
- hwaddr raddr; /* Real address */
- int prot; /* Protection bits */
- int key; /* Access key */
-};
-
static int ppc_hash32_pp_prot(int key, int pp, int nx)
{
int prot;
--
2.30.9
- [PATCH v7 00/61] Misc PPC exception and BookE MMU clean ups, BALATON Zoltan, 2024/05/12
- [PATCH v7 02/61] target/ppc: Remove unused helper, BALATON Zoltan, 2024/05/12
- [PATCH v7 01/61] target/ppc: Remove unused struct 'mmu_ctx_hash32',
BALATON Zoltan <=
- [PATCH v7 07/61] target/ppc/mmu_common.c: Introduce mmu6xx_get_physical_address(), BALATON Zoltan, 2024/05/12
- [PATCH v7 05/61] target/ppc/mmu_common.c: Simplify checking for real mode, BALATON Zoltan, 2024/05/12
- [PATCH v7 04/61] target/ppc/mmu_common.c: Remove unneeded local variable, BALATON Zoltan, 2024/05/12
- [PATCH v7 06/61] target/ppc/mmu_common.c: Drop cases for unimplemented MPC8xx MMU, BALATON Zoltan, 2024/05/12
- [PATCH v7 09/61] target/ppc/mmu_common.c: Move some debug logging, BALATON Zoltan, 2024/05/12
- [PATCH v7 03/61] target/ppc/mmu_common.c: Move calculation of a value closer to its usage, BALATON Zoltan, 2024/05/12
- [PATCH v7 10/61] target/ppc/mmu_common.c: Eliminate ret from mmu6xx_get_physical_address(), BALATON Zoltan, 2024/05/12
- [PATCH v7 08/61] target/ppc/mmu_common.c: Move else branch to avoid large if block, BALATON Zoltan, 2024/05/12
- [PATCH v7 11/61] target/ppc/mmu_common.c: Split out BookE cases before checking real mode, BALATON Zoltan, 2024/05/12
- [PATCH v7 13/61] target/ppc/mmu_common.c: Inline and remove check_physical(), BALATON Zoltan, 2024/05/12