diff options
author | Moritz Fischer <moritzf@google.com> | 2023-01-09 08:42:18 -0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2023-01-10 14:27:18 +0000 |
commit | 717f35a9f2d883a74998f7deb3d2cdf95bddf039 (patch) | |
tree | 4900dd34633f3fb4afe4034e930cf334b735d87d /DynamicTablesPkg | |
parent | 82dd766f25225b0812bbac628c60d2b48f2346e4 (diff) | |
download | edk2-717f35a9f2d883a74998f7deb3d2cdf95bddf039.tar.gz edk2-717f35a9f2d883a74998f7deb3d2cdf95bddf039.tar.bz2 edk2-717f35a9f2d883a74998f7deb3d2cdf95bddf039.zip |
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>
Diffstat (limited to 'DynamicTablesPkg')
-rw-r--r-- | DynamicTablesPkg/Library/FdtHwInfoParserLib/Gic/ArmGicCParser.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/DynamicTablesPkg/Library/FdtHwInfoParserLib/Gic/ArmGicCParser.c b/DynamicTablesPkg/Library/FdtHwInfoParserLib/Gic/ArmGicCParser.c index 2c72bd0c58..ee82f7a0b4 100644 --- a/DynamicTablesPkg/Library/FdtHwInfoParserLib/Gic/ArmGicCParser.c +++ b/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" }
|