summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitchell Horne <mhorne@FreeBSD.org>2020-10-07 20:09:26 +0000
committerMitchell Horne <mhorne@FreeBSD.org>2020-10-07 20:09:26 +0000
commitb7b180cd7cae5dca3096367f0f739d5152f69882 (patch)
tree108c1f2a3c5559406c0b6d49f13bb322aa98f59e
parentf89b6bcc3da8c1a9b85541c571d268d9f8f95cf0 (diff)
downloadsrc-test2-b7b180cd7cae5dca3096367f0f739d5152f69882.tar.gz
src-test2-b7b180cd7cae5dca3096367f0f739d5152f69882.zip
MFS r366360,r366361:
MFC r366271: arm64: set the correct HWCAP Approved by: re (gjb)
Notes
Notes: svn path=/releng/12.2/; revision=366520
-rw-r--r--sys/arm64/arm64/identcpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arm64/arm64/identcpu.c b/sys/arm64/arm64/identcpu.c
index 62b4a7a2933e..0b376cd02286 100644
--- a/sys/arm64/arm64/identcpu.c
+++ b/sys/arm64/arm64/identcpu.c
@@ -500,7 +500,7 @@ parse_cpu_features_hwcap(u_int cpu)
hwcap |= HWCAP_ASIMD;
break;
case ID_AA64PFR0_AdvSIMD_HP:
- hwcap |= HWCAP_ASIMD | HWCAP_ASIMDDP;
+ hwcap |= HWCAP_ASIMD | HWCAP_ASIMDHP;
break;
default:
break;