Merge pull request #1530 from ashwinyes/develop_20180419_Tx2AutoDetect

ARM64: Enable Auto Detection of ThunderX2T99
This commit is contained in:
Martin Kroeker 2018-04-19 14:10:57 +02:00 committed by GitHub
commit 4fcdd24459
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ int detect(void)
return CPU_VULCAN;
else if (strstr(cpu_part, "0x0a1") && strstr(cpu_implementer, "0x43"))
return CPU_THUNDERX;
else if (strstr(cpu_part, "0xFFF") && strstr(cpu_implementer, "0x43")) /* TODO */
else if (strstr(cpu_part, "0x0af") && strstr(cpu_implementer, "0x43"))
return CPU_THUNDERX2T99;
}