Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 22 Sep 2017 17:57:38 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r323933 - head/sys/arm/include
Message-ID:  <201709221757.v8MHvcxS073675@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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_ */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201709221757.v8MHvcxS073675>