]> git.proxmox.com Git - mirror_edk2.git/commitdiff
DynamicTablesPkg: FdtHwInfoParserLib: Fix compatible string
authorMoritz Fischer <moritzf@google.com>
Mon, 9 Jan 2023 16:42:18 +0000 (08:42 -0800)
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Tue, 10 Jan 2023 14:27:18 +0000 (14:27 +0000)
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>
DynamicTablesPkg/Library/FdtHwInfoParserLib/Gic/ArmGicCParser.c

index 2c72bd0c582e68a3e76be72c5f7ede59c4d1900c..ee82f7a0b4615ffaec50df123d54867f287bab34 100644 (file)
@@ -23,6 +23,7 @@
 STATIC CONST COMPATIBILITY_STR  CpuCompatibleStr[] = {\r
   { "arm,arm-v7"     },\r
   { "arm,arm-v8"     },\r
+  { "arm,armv8"      },\r
   { "arm,cortex-a15" },\r
   { "arm,cortex-a7"  },\r
   { "arm,cortex-a57" }\r