Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 3 Mar 2014 14:37:18 +0000 (UTC)
From:      Ian Lepore <ian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r262712 - head/sys/arm/arm
Message-ID:  <201403031437.s23EbIkL053914@svn.freebsd.org>

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



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