Browse Source

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>
Moritz Fischer 1 year ago
parent
commit
717f35a9f2
1 changed files with 1 additions and 0 deletions
  1. 1 0
      DynamicTablesPkg/Library/FdtHwInfoParserLib/Gic/ArmGicCParser.c

+ 1 - 0
DynamicTablesPkg/Library/FdtHwInfoParserLib/Gic/ArmGicCParser.c

@@ -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" }