From 1e159074cb22719b955c174800f3633481e54a3b Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Fri, 22 Sep 2017 17:57:38 +0000 Subject: [PATCH] Correct HWCAP_VFP3* values to match Linux. Reviewed by: andrew, ian MFC after: 2 weeks Differential Revision: https://reviews.freebsd.org/D12388 --- sys/arm/include/elf.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/arm/include/elf.h b/sys/arm/include/elf.h index f4f57b87f4f1..e9d0956e3b78 100644 --- a/sys/arm/include/elf.h +++ b/sys/arm/include/elf.h @@ -117,8 +117,8 @@ __ElfType(Auxinfo); /* Flags passed in AT_HWCAP. */ #define HWCAP_VFP 0x00000040 -#define HWCAP_VFPv3 0x00000200 -#define HWCAP_VFPv3D16 0x00000400 +#define HWCAP_VFPv3 0x00002000 +#define HWCAP_VFPv3D16 0x00004000 #define HWCAP_VFPD32 0x00080000 #endif /* !_MACHINE_ELF_H_ */