|
Subject: revision 3812 committed Newsgroups: gmane.linux.drivers.madwifi.cvs Date: 2008-07-19 20:36:13 GMT (18 weeks, 16 hours and 33 minutes ago)
Project : madwifi
Revision : 3812
Author : benoit (Benoit Papillault)
Date : 2008-07-19 22:36:13 +0200 (Sat, 19 Jul 2008)
Log Message :
Added proper phytype definitions for XR and HT
Affected Files:
* madwifi/branches/madwifi-dfs/net80211/_ieee80211.h updated
Modified: madwifi/branches/madwifi-dfs/net80211/_ieee80211.h
===================================================================
--- madwifi/branches/madwifi-dfs/net80211/_ieee80211.h 2008-07-18 22:22:10 UTC (rev 3811)
+++ madwifi/branches/madwifi-dfs/net80211/_ieee80211.h 2008-07-19 20:36:13 UTC (rev 3812)
@@ -38,12 +38,12 @@
* enumeration cannot be changed */
enum ieee80211_phytype {
- IEEE80211_T_DS, /* direct sequence spread spectrum */
- IEEE80211_T_FH, /* frequency hopping */
- IEEE80211_T_OFDM, /* frequency division multiplexing */
- IEEE80211_T_TURBO, /* high rate OFDM, aka turbo mode */
- IEEE80211_T_XR = 5 /* XR rate (OFDM extended range), used
- * in HAL_RATE_TABLE */
+ IEEE80211_T_DS = 0, /* direct sequence spread spectrum */
+ IEEE80211_T_FH = 1, /* frequency hopping */
+ IEEE80211_T_OFDM = 2, /* frequency division multiplexing */
+ IEEE80211_T_TURBO = 3, /* high rate OFDM, aka turbo mode */
+ IEEE80211_T_HT = 4, /* High Troughput (802.11n) */
+ IEEE80211_T_XR = 5, /* OFDM eXtended Range */
};
#define IEEE80211_T_CCK IEEE80211_T_DS /* more common nomenclature */
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
|
|
|