Add the cpuid of the business/rackmount version of z15 as well

This commit is contained in:
Martin Kroeker 2019-11-21 18:14:29 +01:00 committed by GitHub
parent 0925ef70db
commit 04226f1e97
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -70,6 +70,7 @@ int detect(void)
if (strstr(p, "3906")) return CPU_Z14;
if (strstr(p, "3907")) return CPU_Z14;
if (strstr(p, "8561")) return CPU_Z14; // fallback z15 to z14
if (strstr(p, "8562")) return CPU_Z14; // fallback z15 to z14
return CPU_GENERIC;
}