DynamicTablesPkg: FdtHwInfoParserLib: Fix compatible string

Linux's cpu DT bindings call out arm,armv8 while the code previously
used arm,arm-v8, add second entry to support the arm,armv8 case.

Cc: Sami Mujawar <sami.mujawar@arm.com>
Fixes: e366a41ef0 ("DynamicTablesPkg: FdtHwInfoParser: Add GICC parser")
Signed-off-by: Moritz Fischer <moritzf@google.com>
Reviewed-by: Sami Mujawar <sami.mujawar@arm.com>
This commit is contained in:
Moritz Fischer 2023-01-09 08:42:18 -08:00 committed by mergify[bot]
parent 82dd766f25
commit 717f35a9f2
1 changed files with 1 additions and 0 deletions

View File

@ -23,6 +23,7 @@
STATIC CONST COMPATIBILITY_STR CpuCompatibleStr[] = {
{ "arm,arm-v7" },
{ "arm,arm-v8" },
{ "arm,armv8" },
{ "arm,cortex-a15" },
{ "arm,cortex-a7" },
{ "arm,cortex-a57" }