svn commit: r323933 - head/sys/arm/include

John Baldwin jhb at FreeBSD.org
Fri Sep 22 17:57:39 UTC 2017


Author: jhb
Date: Fri Sep 22 17:57:38 2017
New Revision: 323933
URL: https://svnweb.freebsd.org/changeset/base/323933

Log:
  Correct HWCAP_VFP3* values to match Linux.
  
  Reviewed by:	andrew, ian
  MFC after:	2 weeks
  Differential Revision:	https://reviews.freebsd.org/D12388

Modified:
  head/sys/arm/include/elf.h

Modified: head/sys/arm/include/elf.h
==============================================================================
--- head/sys/arm/include/elf.h	Fri Sep 22 16:42:41 2017	(r323932)
+++ head/sys/arm/include/elf.h	Fri Sep 22 17:57:38 2017	(r323933)
@@ -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_ */


More information about the svn-src-head mailing list