#define bRFStart                       0x0000f000
 #define bBBStart                       0x000000f0
 #define bBBCCKStart                    0x0000000f
-/* Reg)x814 */
+/* Reg x814 */
 #define bPAEnd                         0xf
 #define bTREnd                         0x0f000000
 #define bRFEnd                         0x000f0000
 #define bRTL8258_RxLPFBW          0xc00
 #define bRTL8258_RSSILPFBW        0xc0
 
-/* byte endable for sb_write */
+/* byte enable for sb_write */
 #define bByte0                    0x1
 #define bByte1                    0x2
 #define bByte2                    0x4
 
                        break;
                }
                RT_TRACE(COMP_DBG, "===>%s():RF is in progress, need to wait "
-                        "until rf chang is done.\n", __func__);
+                        "until rf change is done.\n", __func__);
                mdelay(1);
                RFInProgressTimeOut++;
                spin_lock_irqsave(&priv->rf_ps_lock, flags);
 
 
                                if (priv->bResetInProgress) {
                                        RT_TRACE(COMP_POWER_TRACKING,
-                                                "we are in slient reset progress, so return\n");
+                                                "we are in silent reset progress, so return\n");
                                        write_nic_byte(dev, Pw_Track_Flag, 0);
                                        write_nic_byte(dev, FW_Busy_Flag, 0);
                                        return;
 
 
        u8 nStuckCount;
 
-       /* Tx Firmware Relaged flags (10-11)*/
+       /* Tx Firmware Related flags (10-11)*/
        u8 bCTSEnable:1;
        u8 bRTSEnable:1;
        u8 bUseShortGI:1;
        /* the association procedure is sending AUTH request*/
        RTLLIB_ASSOCIATING_AUTHENTICATING,
 
-       /* the association procedure has successfully authentcated
+       /* the association procedure has successfully authenticated
         * and is sending association request
         */
        RTLLIB_ASSOCIATING_AUTHENTICATED,
 
        /* used instead of hard_start_xmit (not softmac_hard_start_xmit)
         * if the IEEE_SOFTMAC_TX_QUEUE feature is used to TX data
-        * frames. I the option IEEE_SOFTMAC_SINGLE_QUEUE is also set
+        * frames. If the option IEEE_SOFTMAC_SINGLE_QUEUE is also set
         * then also management frames are sent via this callback.
         * This function can't sleep.
         */
         */
        void (*data_hard_stop)(struct net_device *dev);
 
-       /* OK this is complementar to data_poll_hard_stop */
+       /* OK this is complementing to data_poll_hard_stop */
        void (*data_hard_resume)(struct net_device *dev);
 
        /* ask to the driver to retune the radio .
         * This function can sleep. the driver should ensure
-        * the radio has been swithced before return.
+        * the radio has been switched before return.
         */
        void (*set_chan)(struct net_device *dev, short ch);
 
         * The syncro version is similar to the start_scan but
         * does not return until all channels has been scanned.
         * this is called in user context and should sleep,
-        * it is called in a work_queue when swithcing to ad-hoc mode
+        * it is called in a work_queue when switching to ad-hoc mode
         * or in behalf of iwlist scan when the card is associated
         * and root user ask for a scan.
         * the fucntion stop_scan should stop both the syncro and
                                     struct rtllib_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);
        short (*get_nic_desc_num)(struct net_device *dev, int queue_index);
        void (*SetBWModeHandler)(struct net_device *dev,
 /* Generate probe requests */
 #define IEEE_SOFTMAC_PROBERQ (1<<4)
 
-/* Generate respones to probe requests */
+/* Generate response to probe requests */
 #define IEEE_SOFTMAC_PROBERS (1<<5)
 
-/* The ieee802.11 stack will manages the netif queue
+/* The ieee802.11 stack will manage the netif queue
  * wake/stop for the driver, taking care of 802.11
  * fragmentation. See softmac.c for details. */
 #define IEEE_SOFTMAC_TX_QUEUE (1<<7)
 
                                memcpy(skb_push(sub_skb, ETH_ALEN), prxb->dst, ETH_ALEN);
                        }
 
-                       /* Indicat the packets to upper layer */
+                       /* Indicate the packets to upper layer */
                        if (sub_skb) {
                                stats->rx_packets++;
                                stats->rx_bytes += sub_skb->len;
                        if (is_multicast_ether_addr(dst))
                                ieee->stats.multicast++;
 
-                       /* Indicat the packets to upper layer */
+                       /* Indicate the packets to upper layer */
                        memset(sub_skb->cb, 0, sizeof(sub_skb->cb));
                        sub_skb->protocol = eth_type_trans(sub_skb, dev);
                        sub_skb->dev = dev;
 
        return net->capability & WLAN_CAPABILITY_SHORT_SLOT_TIME;
 }
 
-/* returns the total length needed for pleacing the RATE MFIE
+/* returns the total length needed for placing the RATE MFIE
  * tag and the EXTENDED RATE MFIE tag if needed.
  * It encludes two bytes per tag for the tag itself and its len
  */
        return rate_len;
 }
 
-/* pleace the MFIE rate, tag to the memory (double) poined.
+/* place the MFIE rate, tag to the memory (double) pointed.
  * Then it updates the pointer so that
  * it points after the new MFIE tag added.
  */
                 *    new network events, despite for updating the net list,
                 *    but we are temporarly 'unlinked' as the driver shall
                 *    not filter RX frames and the channel is changing.
-                * So the only situation in witch are interested is to check
+                * So the only situation in which are interested is to check
                 * if the state become LINKED because of the #1 situation
                 */
 
 
                /* if the user set the AP check if match.
                 * if the network does not broadcast essid we check the
-                *       user supplyed ANY essid
+                *       user supplied ANY essid
                 * if the network does broadcast and the user does not set
                 *       essid it is OK
                 * if the network does broadcast and the user did set essid
 
 /* following are for a simplier TX queue management.
  * Instead of using netif_[stop/wake]_queue the driver
- * will uses these two function (plus a reset one), that
- * will internally uses the kernel netif_* and takes
+ * will use these two functions (plus a reset one), that
+ * will internally use the kernel netif_* and takes
  * care of the ieee802.11 fragmentation.
  * So the driver receives a fragment per time and might
- * call the stop function when it want without take care
- * to have enought room to TX an entire packet.
- * This might be useful if each fragment need it's own
+ * call the stop function when it wants to not
+ * have enough room to TX an entire packet.
+ * This might be useful if each fragment needs it's own
  * descriptor, thus just keep a total free memory > than
- * the max fragmentation treshold is not enought.. If the
- * ieee802.11 stack passed a TXB struct then you needed
+ * the max fragmentation threshold is not enough.. If the
+ * ieee802.11 stack passed a TXB struct then you need
  * to keep N free descriptors where
  * N = MAX_PACKET_SIZE / MIN_FRAG_TRESHOLD
  * In this way you need just one and the 802.11 stack
        rtllib_softmac_check_all_nets(ieee);
 
 
-       /* if not then the state is not linked. Maybe the user swithced to
+       /* if not then the state is not linked. Maybe the user switched to
         * ad-hoc mode just after being in monitor mode, or just after
         * being very few time in managed mode (so the card have had no
         * time to scan all the chans..) or we have just run up the iface
         * after setting ad-hoc mode. So we have to give another try..
         * Here, in ibss mode, should be safe to do this without extra care
-        * (in bss mode we had to make sure no-one tryed to associate when
+        * (in bss mode we had to make sure no-one tried to associate when
         * we had just checked the ieee->state and we was going to start the
-        * scan) beacause in ibss mode the rtllib_new_net function, when
+        * scan) because in ibss mode the rtllib_new_net function, when
         * finds a good net, just set the ieee->state to RTLLIB_LINKED,
         * so, at worst, we waste a bit of time to initiate an unneeded syncro
         * scan, that will stop at the first round because it sees the state
 
        /* ensure no-one start an associating process (thus setting
         * the ieee->state to rtllib_ASSOCIATING) while we
-        * have just cheked it and we are going to enable scan.
+        * have just checked it and we are going to enable scan.
         * The rtllib_new_net function is always called with
         * lock held (from both rtllib_softmac_check_all_nets and
         * the rx path), so we cannot be in the middle of such function
 
        /* until we do not set the state to RTLLIB_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 = RTLLIB_ASSOCIATING).
        * When we set the state to RTLLIB_NOLINK it is possible
        * that the RX path run an attempt to associate, but
 
 
 
        /* this is just to be sure that the GET wx callback
-        * has consisten infos. not needed otherwise
+        * has consistent infos. not needed otherwise
         */
        spin_lock_irqsave(&ieee->lock, flags);
 
        if ((!ieee->sta_wake_up) ||
            (!ieee->enter_sleep_state) ||
            (!ieee->ps_is_queue_empty)) {
-               RTLLIB_DEBUG(RTLLIB_DL_ERR, "%s(): PS mode is tryied to be use "
+               RTLLIB_DEBUG(RTLLIB_DL_ERR, "%s(): PS mode is tried to be use "
                             "but driver missed a callback\n\n", __func__);
                return -1;
        }
 
 802.11 Data Frame
 
 
-802.11 frame_contorl for data frames - 2 bytes
+802.11 frame_control for data frames - 2 bytes
      ,-----------------------------------------------------------------------------------------.
 bits | 0  |  1  |  2  |  3  |  4  |  5  |  6  |  7  |  8  |  9  |  a  |  b  |  c  |  d  |  e   |
      |----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----|-----|------|
 
        spin_lock_irqsave(&ieee->lock, flags);
 
-       /* If there is no driver handler to take the TXB, dont' bother
+       /* If there is no driver handler to take the TXB, don't bother
         * creating it... */
        if ((!ieee->hard_start_xmit && !(ieee->softmac_features &
           IEEE_SOFTMAC_TX_QUEUE)) ||
                   (CFG_RTLLIB_COMPUTE_FCS | CFG_RTLLIB_RESERVE_FCS))
                        bytes_per_frag -= RTLLIB_FCS_LEN;
 
-               /* Each fragment may need to have room for encryptiong
+               /* Each fragment may need to have room for encrypting
                 * pre/postfix */
                if (encrypt) {
                        bytes_per_frag -= crypt->ops->extra_mpdu_prefix_len +
 
                                       (*crypt)->priv);
                sec.flags |= (1 << key);
                /* This ensures a key will be activated if no key is
-                * explicitely set */
+                * explicitly set */
                if (key == sec.active_key)
                        sec.flags |= SEC_ACTIVE_KEY;
                ieee->crypt_info.tx_keyidx = key;