[PATCH] target/riscv/cpu.c: fix Zvkb extension config

2024-05-11 Thread Yangyu Chen
This code has a typo that writes zvkb to zvkg, causing users can't enable zvkb through the config. This patch gets this fixed. Signed-off-by: Yangyu Chen Fixes: ea61ef7097d0 ("target/riscv: Move vector crypto extensions to riscv_cpu_extensions") --- target/riscv/cpu.c | 2 +- 1 file changed, 1

Re: [PATCH] target/riscv/cpu.c: fix Zvkb extension config

2024-05-10 Thread LIU Zhiwei
On 2024/5/11 12:58, Yangyu Chen wrote: This code has a typo that writes zvkb to zvkg, causing users can't enable zvkb through the config. This patch gets this fixed. Signed-off-by: Yangyu Chen Fixes: ea61ef7097d0 ("target/riscv: Move vector crypto extensions to riscv_cpu_extensions") --- t