diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2022-04-21 08:16:59 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2022-04-26 08:16:41 -0700 |
commit | 8036281527e5bdc2ebeca53a592115dcfa605245 (patch) | |
tree | 10be3f7b151037a50c2b315b840404bf40656a6b /target/nios2/cpu.h | |
parent | 9d63656354d7cdac6a4b2cafa8243ede4a551a56 (diff) | |
download | qemu-8036281527e5bdc2ebeca53a592115dcfa605245.zip qemu-8036281527e5bdc2ebeca53a592115dcfa605245.tar.gz qemu-8036281527e5bdc2ebeca53a592115dcfa605245.tar.bz2 |
target/nios2: Rename CR_TLBMISC_WR to CR_TLBMISC_WE
WE is the architectural name of the field, not WR.
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20220421151735.31996-29-richard.henderson@linaro.org>
Diffstat (limited to 'target/nios2/cpu.h')
-rw-r--r-- | target/nios2/cpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/nios2/cpu.h b/target/nios2/cpu.h index bfa86ed..54bb6cd 100644 --- a/target/nios2/cpu.h +++ b/target/nios2/cpu.h @@ -134,7 +134,7 @@ FIELD(CR_TLBACC, IG, 25, 7) #define CR_TLBMISC_WAY_SHIFT 20 #define CR_TLBMISC_WAY_MASK (0xF << CR_TLBMISC_WAY_SHIFT) #define CR_TLBMISC_RD (1 << 19) -#define CR_TLBMISC_WR (1 << 18) +#define CR_TLBMISC_WE (1 << 18) #define CR_TLBMISC_PID_SHIFT 4 #define CR_TLBMISC_PID_MASK (0x3FFF << CR_TLBMISC_PID_SHIFT) #define CR_TLBMISC_DBL (1 << 3) |