PERFORCE change 119742 for review

Sepherosa Ziehau sephe at FreeBSD.org
Sun May 13 03:42:43 UTC 2007


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

Change 119742 by sephe at sephe_zealot:sam_wifi on 2007/05/13 03:42:36

	u_intX_t -> uintX_t
	
	Approved by:	sam

Affected files ...

.. //depot/projects/wifi/sys/net80211/ieee80211.c#52 edit

Differences ...

==== //depot/projects/wifi/sys/net80211/ieee80211.c#52 (text+ko) ====

@@ -88,7 +88,7 @@
 SLIST_HEAD(ieee80211_list, ieee80211com);
 static struct ieee80211_list ieee80211_list =
 	SLIST_HEAD_INITIALIZER(ieee80211_list);
-static u_int8_t ieee80211_vapmap[32];		/* enough for 256 */
+static uint8_t ieee80211_vapmap[32];		/* enough for 256 */
 static struct mtx ieee80211_vap_mtx;
 MTX_SYSINIT(ieee80211, &ieee80211_vap_mtx, "net80211 instances", MTX_DEF);
 
@@ -97,7 +97,7 @@
 {
 #define	N(a)	(sizeof(a)/sizeof(a[0]))
 	int i;
-	u_int8_t b;
+	uint8_t b;
 
 	mtx_lock(&ieee80211_vap_mtx);
 	ic->ic_vap = 0;
@@ -683,7 +683,7 @@
  * Find an instance by it's mac address.
  */
 struct ieee80211com *
-ieee80211_find_vap(const u_int8_t mac[IEEE80211_ADDR_LEN])
+ieee80211_find_vap(const uint8_t mac[IEEE80211_ADDR_LEN])
 {
 	struct ieee80211com *ic;
 


More information about the p4-projects mailing list