Browse Source

Fix cortex-a15 detecting bug.

tags/v0.2.14^2
Zhang Xianyi 10 years ago
parent
commit
4e6c4046f7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      cpuid_arm.c

+ 1
- 1
cpuid_arm.c View File

@@ -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…
Cancel
Save