Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 9 Jul 2009 18:18:03 +0000 (UTC)
From:      Rui Paulo <rpaulo@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r195507 - projects/mesh11s/sys/net80211
Message-ID:  <200907091818.n69II3YK093216@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rpaulo
Date: Thu Jul  9 18:18:03 2009
New Revision: 195507
URL: http://svn.freebsd.org/changeset/base/195507

Log:
  Use __inline instead of inline.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  projects/mesh11s/sys/net80211/ieee80211_hwmp.c

Modified: projects/mesh11s/sys/net80211/ieee80211_hwmp.c
==============================================================================
--- projects/mesh11s/sys/net80211/ieee80211_hwmp.c	Thu Jul  9 18:17:01 2009	(r195506)
+++ projects/mesh11s/sys/net80211/ieee80211_hwmp.c	Thu Jul  9 18:18:03 2009	(r195507)
@@ -106,7 +106,7 @@ static int	hwmp_send_perr(struct ieee802
 static void	hwmp_recv_rann(struct ieee80211vap *, struct ieee80211_node *,
 		   const struct ieee80211_frame *,
 		   const struct ieee80211_meshrann_ie *);
-static inline int hwmp_send_rann(struct ieee80211_node *,
+static __inline int hwmp_send_rann(struct ieee80211_node *,
 		    const uint8_t [IEEE80211_ADDR_LEN],
 		    const uint8_t [IEEE80211_ADDR_LEN],
 		    struct ieee80211_meshrann_ie *);
@@ -1016,7 +1016,7 @@ hwmp_recv_prep(struct ieee80211vap *vap,
 	}
 }
 
-static inline int
+static __inline int
 hwmp_send_prep(struct ieee80211_node *ni,
     const uint8_t sa[IEEE80211_ADDR_LEN],
     const uint8_t da[IEEE80211_ADDR_LEN],
@@ -1121,7 +1121,7 @@ hwmp_recv_perr(struct ieee80211vap *vap,
 #undef	PEER_DADDR
 #undef	PERR_DSEQ
 
-static inline int
+static __inline int
 hwmp_send_perr(struct ieee80211_node *ni,
     const uint8_t sa[IEEE80211_ADDR_LEN],
     const uint8_t da[IEEE80211_ADDR_LEN],
@@ -1186,7 +1186,7 @@ hwmp_recv_rann(struct ieee80211vap *vap,
 	}
 }
 
-static inline int
+static __inline int
 hwmp_send_rann(struct ieee80211_node *ni,
     const uint8_t sa[IEEE80211_ADDR_LEN],
     const uint8_t da[IEEE80211_ADDR_LEN],



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