PERFORCE change 133370 for review
    Sam Leffler 
    sam at FreeBSD.org
       
    Tue Jan 15 15:31:30 PST 2008
    
    
  
http://perforce.freebsd.org/chv.cgi?CH=133370
Change 133370 by sam at sam_ebb on 2008/01/15 23:30:50
	ieee80211com must be at the front of the softc for now so
	net80211 can locate it
Affected files ...
.. //depot/projects/vap/sys/dev/ral/rt2560var.h#4 edit
.. //depot/projects/vap/sys/dev/ral/rt2661var.h#4 edit
Differences ...
==== //depot/projects/vap/sys/dev/ral/rt2560var.h#4 (text) ====
@@ -107,8 +107,8 @@
 #define	RT2560_VAP(vap)		((struct rt2560_vap *)(vap))
 
 struct rt2560_softc {
+	struct ieee80211com	sc_ic;
 	struct ifnet		*sc_ifp;
-	struct ieee80211com	sc_ic;
 	device_t		sc_dev;
 	bus_space_tag_t		sc_st;
 	bus_space_handle_t	sc_sh;
==== //depot/projects/vap/sys/dev/ral/rt2661var.h#4 (text) ====
@@ -99,8 +99,8 @@
 #define	RT2661_VAP(vap)		((struct rt2661_vap *)(vap))
 
 struct rt2661_softc {
+	struct ieee80211com		sc_ic;
 	struct ifnet			*sc_ifp;
-	struct ieee80211com		sc_ic;
 	device_t			sc_dev;
 	bus_space_tag_t			sc_st;
 	bus_space_handle_t		sc_sh;
    
    
More information about the p4-projects
mailing list