Skip to content

Commit 4e6c404

Browse files
committed
Fix cortex-a15 detecting bug.
1 parent 229ce2c commit 4e6c404

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpuid_arm.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ int detect(void)
112112
if (strstr(p, "0xc09")) {
113113
return CPU_CORTEXA9;
114114
}
115-
if (strstr(p, "0xc15")) {
115+
if (strstr(p, "0xc0f")) {
116116
return CPU_CORTEXA15;
117117
}
118118

0 commit comments

Comments
 (0)