Skip to content

Commit

Permalink
Fix chipset enum name to include 'vendor_' (#210)
Browse files Browse the repository at this point in the history
The original change that introduced this should have used a consistent prefix for all enum types, for consistency sake.
  • Loading branch information
prashanthswami committed Nov 30, 2023
1 parent 9d80992 commit b8b29a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/riscv/api.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
/* RISC-V Vendor IDs. */
enum cpuinfo_riscv_chipset_vendor {
cpuinfo_riscv_chipset_vendor_unknown = 0,
cpuinfo_riscv_chipset_sifive = 0x489,
cpuinfo_riscv_chipset_vendor_sifive = 0x489,
cpuinfo_riscv_chipset_vendor_max,
};

Expand Down
2 changes: 1 addition & 1 deletion src/riscv/uarch.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ void cpuinfo_riscv_decode_vendor_uarch(
enum cpuinfo_uarch uarch[restrict static 1]) {
/* The vendor ID is sufficient to determine the cpuinfo_vendor. */
switch(vendor_id) {
case cpuinfo_riscv_chipset_sifive:
case cpuinfo_riscv_chipset_vendor_sifive:
*vendor = cpuinfo_vendor_sifive;
break;
default:
Expand Down

0 comments on commit b8b29a1

Please sign in to comment.