staging: rtl8192u: Fix typo in staging/rtl8192u
authorMasanari Iida <standby24x7@gmail.com>
Fri, 10 Aug 2012 14:24:11 +0000 (23:24 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 14 Aug 2012 02:32:13 +0000 (19:32 -0700)
Correct spelling typo in staging/rtl8192u

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192u/ieee80211/ieee80211.h
drivers/staging/rtl8192u/ieee80211/ieee80211_softmac.c
drivers/staging/rtl8192u/ieee80211/rtl819x_BAProc.c
drivers/staging/rtl8192u/ieee80211/rtl819x_HT.h
drivers/staging/rtl8192u/ieee80211/rtl819x_HTProc.c
drivers/staging/rtl8192u/r819xU_HTType.h
drivers/staging/rtl8192u/r819xU_phyreg.h

index 1c0a1db6420f06d1e5a505f37675d9895e9df64f..13f45c3125cea39dca829cb45d8400111b502de0 100644 (file)
@@ -2114,7 +2114,7 @@ struct ieee80211_device {
                                   struct ieee80211_network * network, u16 type);
         int (*is_qos_active) (struct net_device *dev, struct sk_buff *skb);
 
-       /* Softmac-generated frames (mamagement) are TXed via this
+       /* Softmac-generated frames (management) are TXed via this
         * callback if the flag IEEE_SOFTMAC_SINGLE_QUEUE is
         * not set. As some cards may have different HW queues that
         * one might want to use for data and management frames
@@ -2192,7 +2192,7 @@ struct ieee80211_device {
        int (*handle_assoc_response) (struct net_device * dev, struct ieee80211_assoc_response_frame * resp, struct ieee80211_network * network);
 
 
-       /* check whether Tx hw resouce available */
+       /* check whether Tx hw resource available */
        short (*check_nic_enough_desc)(struct net_device *dev, int queue_index);
        //added by wb for HT related
 //     void (*SwChnlByTimerHandler)(struct net_device *dev, int channel);
index f6ff8cff313a40e739c860df27d1c1fa806716b4..a6adfc91629129e0d44dccc55c8367840fbf7e4e 100644 (file)
@@ -1448,7 +1448,7 @@ inline void ieee80211_softmac_new_net(struct ieee80211_device *ieee, struct ieee
                        ( apset && apmatch &&
                                ((ssidset && ssidbroad && ssidmatch) || (ssidbroad && !ssidset) || (!ssidbroad && ssidset)) ) ||
                        /* if the ap is not set, check that the user set the bssid
-                        * and the network does bradcast and that those two bssid matches
+                        * and the network does broadcast and that those two bssid matches
                         */
                        (!apset && ssidset && ssidbroad && ssidmatch)
                        ){
@@ -2520,7 +2520,7 @@ void ieee80211_associate_retry_wq(struct work_struct *work)
 
        /* until we do not set the state to IEEE80211_NOLINK
        * there are no possibility to have someone else trying
-       * to start an association procdure (we get here with
+       * to start an association procedure (we get here with
        * ieee->state = IEEE80211_ASSOCIATING).
        * When we set the state to IEEE80211_NOLINK it is possible
        * that the RX path run an attempt to associate, but
index 27d083a70eb2d7c7ed0f326d4a9d8a06c8dee1a3..1ebea3daea2dbad2cd4a114528bba9fa6bd75159 100644 (file)
@@ -1,6 +1,6 @@
 /********************************************************************************************************************************
  * This file is created to process BA Action Frame. According to 802.11 spec, there are 3 BA action types at all. And as BA is
- * related to TS, this part need some struture defined in QOS side code. Also TX RX is going to be resturctured, so how to send
+ * related to TS, this part need some structure defined in QOS side code. Also TX RX is going to be resturctured, so how to send
  * ADDBAREQ ADDBARSP and DELBA packet is still on consideration. Temporarily use MANAGE QUEUE instead of Normal Queue.
  * WB 2008-05-27
  * *****************************************************************************************************************************/
index 0b1a1fc093918c9368d287fd0150ecef230c0b03..a60b39cdb4723c1972220dfe4a6e6d541517ffaf 100644 (file)
@@ -15,7 +15,7 @@
 #define HT_OPMODE_MIXED                        3
 
 //
-// MIMO Power Save Setings
+// MIMO Power Save Settings
 //
 #define MIMO_PS_STATIC                         0
 #define MIMO_PS_DYNAMIC                        1
@@ -242,7 +242,7 @@ typedef struct _RT_HIGH_THROUGHPUT{
        u8                              bEnableHT;
        u8                              bCurrentHTSupport;
 
-       u8                              bRegBW40MHz;                            // Tx 40MHz channel capablity
+       u8                              bRegBW40MHz;                            // Tx 40MHz channel capability
        u8                              bCurBW40MHz;                            // Tx 40MHz channel capability
 
        u8                              bRegShortGI40MHz;                       // Tx Short GI for 40Mhz
index e88a839b2a91753af3ead5b78b5608e4dd0b2752..ebb523904edc1ce527113995e2e1ee4c85253246 100644 (file)
@@ -912,7 +912,7 @@ u8 HTFilterMCSRate( struct ieee80211_device* ieee, u8* pSupportMCS, u8* pOperate
 
        u8 i=0;
 
-       // filter out operational rate set not supported by AP, the lenth of it is 16
+       // filter out operational rate set not supported by AP, the length of it is 16
        for(i=0;i<=15;i++){
                pOperateMCS[i] = ieee->Regdot11HTOperationalRateSet[i]&pSupportMCS[i];
        }
index e07f8b17a0d6fc9869e06703ca782cf960df68ef..6c1d05e1e820eefb866e23af03e4a04a10f1a348 100644 (file)
@@ -16,7 +16,7 @@
 #define HT_OPMODE_MIXED                        3
 
 //
-// MIMO Power Save Setings
+// MIMO Power Save Settings
 //
 #define MIMO_PS_STATIC                         0
 #define MIMO_PS_DYNAMIC                        1
index 50f24dce8b16771cd56ca3cfe9956453fc199536..cca34c05f6a597c0e7fd6777330b53ebdf208052 100644 (file)
 #define bCCKRxIG                                       0x7f00
 #define bCCKLNAPolarity                        0x800000
 #define bCCKRx1stGain                          0x7f0000
-#define bCCKRFExtend                           0x20000000 //CCK Rx inital gain polarity
+#define bCCKRFExtend                           0x20000000 //CCK Rx initial gain polarity
 #define bCCKRxAGCSatLevel                      0x1f000000
 #define bCCKRxAGCSatCount                      0xe0
 #define bCCKRxRFSettle                         0x1f       //AGCsamp_dly