Skip to content

Commit 4e6c404

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

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cpuid_arm.c

Lines changed: 1 addition & 1 deletion
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)