From 4e6c4046f76c1ad624f0be5a326b3d35c90711ab Mon Sep 17 00:00:00 2001 From: Zhang Xianyi Date: Mon, 12 Jan 2015 09:35:16 +0000 Subject: [PATCH] Fix cortex-a15 detecting bug. --- cpuid_arm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpuid_arm.c b/cpuid_arm.c index 211ea2764..51ba72d70 100644 --- a/cpuid_arm.c +++ b/cpuid_arm.c @@ -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; }