File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ config RISCV_ISA_EXT_M
34
34
config RISCV_ISA_EXT_A
35
35
bool
36
36
imply RISCV_ISA_EXT_ZAAMO
37
- imply RISCV_ISA_EXT_ZLRSC
37
+ imply RISCV_ISA_EXT_ZALRSC
38
38
help
39
39
(A) - Standard Extension for Atomic Instructions
40
40
@@ -120,12 +120,12 @@ config RISCV_ISA_EXT_ZAAMO
120
120
121
121
The Zaamo extension enables support for AMO*.W/D-style instructions.
122
122
123
- config RISCV_ISA_EXT_ZLRSC
123
+ config RISCV_ISA_EXT_ZALRSC
124
124
bool
125
125
help
126
- (Zlrsc ) - Load-Reserved/Store-Conditional subset of the A extension
126
+ (Zalrsc ) - Load-Reserved/Store-Conditional subset of the A extension
127
127
128
- The Zlrsc extension enables support for LR.W/D and SC.W/D-style instructions.
128
+ The Zalrsc extension enables support for LR.W/D and SC.W/D-style instructions.
129
129
130
130
config RISCV_ISA_EXT_ZBA
131
131
bool
Original file line number Diff line number Diff line change @@ -54,15 +54,15 @@ if(CONFIG_RISCV_ISA_EXT_ZIFENCEI)
54
54
string (CONCAT riscv_march ${riscv_march} "_zifencei" )
55
55
endif ()
56
56
57
- # Check whether we already imply Zaamo/Zlrsc by selecting the A extension; if not - check them
57
+ # Check whether we already imply Zaamo/Zalrsc by selecting the A extension; if not - check them
58
58
# individually and enable them as needed
59
59
if (NOT CONFIG_RISCV_ISA_EXT_A )
60
60
if (CONFIG_RISCV_ISA_EXT_ZAAMO )
61
61
string (CONCAT riscv_march ${riscv_march} "_zaamo" )
62
62
endif ()
63
63
64
- if (CONFIG_RISCV_ISA_EXT_ZLRSC )
65
- string (CONCAT riscv_march ${riscv_march} "_zlrsc " )
64
+ if (CONFIG_RISCV_ISA_EXT_ZALRSC )
65
+ string (CONCAT riscv_march ${riscv_march} "_zalrsc " )
66
66
endif ()
67
67
endif ()
68
68
You can’t perform that action at this time.
0 commit comments