Skip to content

Commit

Permalink
Refactor reporting of Neoverse cores in cpu-info
Browse files Browse the repository at this point in the history
  • Loading branch information
Maratyszcza committed Aug 10, 2023
1 parent 2ad28d1 commit c13d0bb
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions tools/cpu-info.c
Original file line number Diff line number Diff line change
Expand Up @@ -202,11 +202,13 @@ static const char* uarch_to_string(enum cpuinfo_uarch uarch) {
case cpuinfo_uarch_cortex_x3:
return "Cortex-X3";
case cpuinfo_uarch_neoverse_n1:
return "Neoverse-N1";
return "Neoverse N1";
case cpuinfo_uarch_neoverse_e1:
return "Neoverse E1";
case cpuinfo_uarch_neoverse_v1:
return "Neoverse-V1";
return "Neoverse V1";
case cpuinfo_uarch_neoverse_n2:
return "Neoverse-N2";
return "Neoverse N2";
case cpuinfo_uarch_scorpion:
return "Scorpion";
case cpuinfo_uarch_krait:
Expand Down

0 comments on commit c13d0bb

Please sign in to comment.