svn commit: r262712 - head/sys/arm/arm

Ian Lepore ian at FreeBSD.org
Mon Mar 3 14:37:18 UTC 2014


Author: ian
Date: Mon Mar  3 14:37:18 2014
New Revision: 262712
URL: http://svnweb.freebsd.org/changeset/base/262712

Log:
  Use the standard __used macro instead of a bare __attribute__.
  
  Submitted by:	bde

Modified:
  head/sys/arm/arm/mpcore_timer.c

Modified: head/sys/arm/arm/mpcore_timer.c
==============================================================================
--- head/sys/arm/arm/mpcore_timer.c	Mon Mar  3 11:36:39 2014	(r262711)
+++ head/sys/arm/arm/mpcore_timer.c	Mon Mar  3 14:37:18 2014	(r262712)
@@ -369,8 +369,7 @@ DRIVER_MODULE(mp_tmr, simplebus, arm_tmr
  *	RETURNS:
  *	nothing
  */
-static void
-__attribute__((used)) /* Must emit function code for the weak ref below. */
+static void __used /* Must emit function code for the weak ref below. */
 arm_tmr_DELAY(int usec)
 {
 	int32_t counts_per_usec;


More information about the svn-src-head mailing list