Fix cortex-a15 detecting bug.
This commit is contained in:
parent
229ce2ccd1
commit
4e6c4046f7
|
@ -112,7 +112,7 @@ int detect(void)
|
||||||
if (strstr(p, "0xc09")) {
|
if (strstr(p, "0xc09")) {
|
||||||
return CPU_CORTEXA9;
|
return CPU_CORTEXA9;
|
||||||
}
|
}
|
||||||
if (strstr(p, "0xc15")) {
|
if (strstr(p, "0xc0f")) {
|
||||||
return CPU_CORTEXA15;
|
return CPU_CORTEXA15;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue