PERFORCE change 141314 for review

Sam Leffler sam at FreeBSD.org
Wed May 7 22:59:07 UTC 2008


http://perforce.freebsd.org/chv.cgi?CH=141314

Change 141314 by sam at sam_ebb on 2008/05/07 22:58:32

	inline is supposed to go before return type

Affected files ...

.. //depot/projects/vap/sys/net80211/ieee80211_ht.h#13 edit

Differences ...

==== //depot/projects/vap/sys/net80211/ieee80211_ht.h#13 (text+ko) ====

@@ -80,7 +80,7 @@
  * available and more streams are requested than available.
  */
 
-static void __inline
+static __inline void
 ieee80211_txampdu_update_pps(struct ieee80211_tx_ampdu *tap)
 {
 	/* NB: scale factor of 2 was picked heuristically */
@@ -91,7 +91,7 @@
 /*
  * Count a packet towards the pps estimate.
  */
-static void __inline
+static __inline void
 ieee80211_txampdu_count_packet(struct ieee80211_tx_ampdu *tap)
 {
 	/* XXX bound loop/do more crude estimate? */
@@ -113,7 +113,7 @@
  * date due to lack of traffic then we decay the estimate
  * to account for the idle time.
  */
-static int __inline
+static __inline int
 ieee80211_txampdu_getpps(struct ieee80211_tx_ampdu *tap)
 {
 	/* XXX bound loop/do more crude estimate? */


More information about the p4-projects mailing list