Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 20 May 2016 19:18:33 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r300324 - head/sys/arm/include
Message-ID:  <201605201918.u4KJIXhX018843@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: imp
Date: Fri May 20 19:18:32 2016
New Revision: 300324
URL: https://svnweb.freebsd.org/changeset/base/300324

Log:
  Remove hf appending code from param.h for machine arch name.
  
  Submitted by: ian@ andyt@

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

Modified: head/sys/arm/include/param.h
==============================================================================
--- head/sys/arm/include/param.h	Fri May 20 19:14:15 2016	(r300323)
+++ head/sys/arm/include/param.h	Fri May 20 19:18:32 2016	(r300324)
@@ -59,12 +59,6 @@
 #define	_V6_SUFFIX ""
 #endif
 
-#ifdef __ARM_PCS_VFP
-#define	_HF_SUFFIX "hf"
-#else
-#define	_HF_SUFFIX ""
-#endif
-
 #ifdef __ARM_BIG_ENDIAN
 #define	_EB_SUFFIX "eb"
 #else
@@ -75,7 +69,7 @@
 #define	MACHINE		"arm"
 #endif
 #ifndef MACHINE_ARCH
-#define	MACHINE_ARCH	"arm" _V6_SUFFIX _HF_SUFFIX _EB_SUFFIX
+#define	MACHINE_ARCH	"arm" _V6_SUFFIX _EB_SUFFIX
 #endif
 
 #if defined(SMP) || defined(KLD_MODULE)



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