[PATCH 04/12] target/arm/tcg/: fix typo in FEAT name

Pierrick Bouvier posted 12 patches 17 hours ago
[PATCH 04/12] target/arm/tcg/: fix typo in FEAT name
Posted by Pierrick Bouvier 17 hours ago
Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
---
 target/arm/tcg/cpu32.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/target/arm/tcg/cpu32.c b/target/arm/tcg/cpu32.c
index 20c2737f17b..4e589b747e4 100644
--- a/target/arm/tcg/cpu32.c
+++ b/target/arm/tcg/cpu32.c
@@ -71,7 +71,7 @@ void aa32_max_features(ARMCPU *cpu)
     cpu->isar.id_mmfr5 = t;
 
     t = cpu->isar.id_pfr0;
-    t = FIELD_DP32(t, ID_PFR0, CSV2, 2);          /* FEAT_CVS2 */
+    t = FIELD_DP32(t, ID_PFR0, CSV2, 2);          /* FEAT_CSV2 */
     t = FIELD_DP32(t, ID_PFR0, DIT, 1);           /* FEAT_DIT */
     t = FIELD_DP32(t, ID_PFR0, RAS, 1);           /* FEAT_RAS */
     cpu->isar.id_pfr0 = t;
-- 
2.39.5
Re: [PATCH 04/12] target/arm/tcg/: fix typo in FEAT name
Posted by Richard Henderson 2 hours ago
On 11/22/24 16:50, Pierrick Bouvier wrote:
> Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
> ---
>   target/arm/tcg/cpu32.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)

Oops.  :-)
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>


> 
> diff --git a/target/arm/tcg/cpu32.c b/target/arm/tcg/cpu32.c
> index 20c2737f17b..4e589b747e4 100644
> --- a/target/arm/tcg/cpu32.c
> +++ b/target/arm/tcg/cpu32.c
> @@ -71,7 +71,7 @@ void aa32_max_features(ARMCPU *cpu)
>       cpu->isar.id_mmfr5 = t;
>   
>       t = cpu->isar.id_pfr0;
> -    t = FIELD_DP32(t, ID_PFR0, CSV2, 2);          /* FEAT_CVS2 */
> +    t = FIELD_DP32(t, ID_PFR0, CSV2, 2);          /* FEAT_CSV2 */
>       t = FIELD_DP32(t, ID_PFR0, DIT, 1);           /* FEAT_DIT */
>       t = FIELD_DP32(t, ID_PFR0, RAS, 1);           /* FEAT_RAS */
>       cpu->isar.id_pfr0 = t;
Re: [PATCH 04/12] target/arm/tcg/: fix typo in FEAT name
Posted by Philippe Mathieu-Daudé 10 hours ago
On 22/11/24 23:50, Pierrick Bouvier wrote:
> Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
> ---
>   target/arm/tcg/cpu32.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>