Skip to content

Commit

Permalink
adapt SpecSEI description to be one string
Browse files Browse the repository at this point in the history
PrintValues() will split it into multiple lines
  • Loading branch information
hrw committed Feb 22, 2024
1 parent e12516f commit 32b9139
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ArmCpuInfo/ArmCpuInfo.c
Original file line number Diff line number Diff line change
Expand Up @@ -1885,13 +1885,13 @@ HandleAa64Mmfr1 (
(((Aa64Pfr0 >> 28) & 0xf) == b0010))
{
if (((Aa64Mmfr1 >> 24) & 0xf) == b0000 ) {
PrintValues (RegName, Name, "27:24", b0000, "The PE never generates an SError interrupt due to");
PrintText ("", "", "", "", "an External abort on a speculative read.");
PrintValues (RegName, Name, "27:24", b0000, "The PE never generates an SError interrupt due to "
"an External abort on a speculative read.");
}

if (((Aa64Mmfr1 >> 24) & 0xf) == b0001 ) {
PrintValues (RegName, Name, "27:24", b0001, "The PE might generate an SError interrupt due to");
PrintText ("", "", "", "", "an External abort on a speculative read.");
PrintValues (RegName, Name, "27:24", b0001, "The PE might generate an SError interrupt due to "
"an External abort on a speculative read.");
}
}

Expand Down

0 comments on commit 32b9139

Please sign in to comment.