Re: [PATCH v4 07/10] riscv: Add RISC-V entries in processor type and ISA strings
Sunil V L <[email protected]> Tue, 9 Jun 2026 13:57:23 +0530
| Newsgroups | dev.linux.lists.acpica-devel,org.infradead.lists.linux-riscv,org.kernel.vger.linux-acpi,org.kernel.vger.linux-efi,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <CAB19ukHDB6viGCM7FURuqsR_4E=bb8nd-z-Y32+mgrdBT7JB-A@mail.gmail.com> |
On Wed, May 13, 2026 at 2:14 PM Himanshu Chauhan <[email protected]> wrote: > > Add RISCV and RISCV32/64 strings in the in processor type and ISA strings > respectively. These are defined for cper records. > > Signed-off-by: Himanshu Chauhan <[email protected]> > --- > drivers/firmware/efi/cper.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/drivers/firmware/efi/cper.c b/drivers/firmware/efi/cper.c > index 06b4fdb59917..1b1ab2f1355b 100644 > --- a/drivers/firmware/efi/cper.c > +++ b/drivers/firmware/efi/cper.c > @@ -170,6 +170,7 @@ static const char * const proc_type_strs[] = { > "IA32/X64", > "IA64", > "ARM", > + "RISC-V", > }; > > static const char * const proc_isa_strs[] = { > @@ -178,6 +179,8 @@ static const char * const proc_isa_strs[] = { > "X64", > "ARM A32/T32", > "ARM A64", > + "RV32/RV32E", > + "RV64", > }; > Reviewed-by: Sunil V L <[email protected]>