svn commit: r195507 - projects/mesh11s/sys/net80211

Rui Paulo rpaulo at FreeBSD.org
Thu Jul 9 18:18:04 UTC 2009


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],


More information about the svn-src-projects mailing list