Fix cortex-a15 detecting bug.

This commit is contained in:
Zhang Xianyi
2015-01-12 09:35:16 +00:00
parent 229ce2ccd1
commit 4e6c4046f7

View File

@@ -112,7 +112,7 @@ int detect(void)
if (strstr(p, "0xc09")) {
return CPU_CORTEXA9;
}
if (strstr(p, "0xc15")) {
if (strstr(p, "0xc0f")) {
return CPU_CORTEXA15;
}