diff options
author | JianChunfu <jansef.jian@hj-micro.com> | 2025-03-07 10:08:18 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2025-03-07 10:08:18 +0000 |
commit | a674db604db3fc4ef5267243dc991852f1f1bebc (patch) | |
tree | 503cac3ccb26f8f26c4b0cc3284cae74f9c2baa0 | |
parent | 98c7362b1efe651327385a25874a73e008c6549e (diff) | |
download | qemu-a674db604db3fc4ef5267243dc991852f1f1bebc.zip qemu-a674db604db3fc4ef5267243dc991852f1f1bebc.tar.gz qemu-a674db604db3fc4ef5267243dc991852f1f1bebc.tar.bz2 |
hw/arm/smmu-common: Remove the repeated ttb field
SMMUTransCfg->ttb is never used in QEMU, TT base address
can be accessed by SMMUTransCfg->tt[i]->ttb.
Signed-off-by: JianChunfu <jansef.jian@hj-micro.com>
Reviewed-by: Eric Auger <eric.auger@redhat.com>
Message-id: 20250221031034.69822-1-jansef.jian@hj-micro.com
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r-- | include/hw/arm/smmu-common.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/hw/arm/smmu-common.h b/include/hw/arm/smmu-common.h index d1a4a64..e5ad55b 100644 --- a/include/hw/arm/smmu-common.h +++ b/include/hw/arm/smmu-common.h @@ -110,7 +110,6 @@ typedef struct SMMUTransCfg { /* Used by stage-1 only. */ bool aa64; /* arch64 or aarch32 translation table */ bool record_faults; /* record fault events */ - uint64_t ttb; /* TT base address */ uint8_t oas; /* output address width */ uint8_t tbi; /* Top Byte Ignore */ int asid; |