Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 7 May 2008 22:59:06 GMT
From:      Sam Leffler <sam@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 141314 for review
Message-ID:  <200805072259.m47Mx63Y077735@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=141314

Change 141314 by sam@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? */



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