staging: rtl8723bs: hal: Correct typos in comments
authorR Veera Kumar <vkor@vkten.in>
Thu, 26 Mar 2020 14:30:23 +0000 (20:00 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 26 Mar 2020 14:45:09 +0000 (15:45 +0100)
Correct typos in comments.
Misspellings found using checkpatch.pl.

Signed-off-by: R Veera Kumar <vkor@vkten.in>
Link: https://lore.kernel.org/r/20200326143023.13681-1-vkor@vkten.in
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/hal/HalBtc8723b1Ant.c
drivers/staging/rtl8723bs/hal/HalBtc8723b2Ant.c
drivers/staging/rtl8723bs/hal/HalPhyRf.c
drivers/staging/rtl8723bs/hal/HalPwrSeqCmd.c
drivers/staging/rtl8723bs/hal/hal_intf.c
drivers/staging/rtl8723bs/hal/odm_HWConfig.c
drivers/staging/rtl8723bs/hal/odm_debug.h
drivers/staging/rtl8723bs/hal/odm_types.h
drivers/staging/rtl8723bs/hal/rtl8723bs_recv.c
drivers/staging/rtl8723bs/hal/sdio_halinit.c

index dd349c5..c60e8c5 100644 (file)
@@ -1807,7 +1807,7 @@ static void halbtc8723b1ant_TdmaDurationAdjustForAcl(
                result = 0;
                WaitCount = 0;
        } else {
-               /* accquire the BT TRx retry count from BT_Info byte2 */
+               /* acquire the BT TRx retry count from BT_Info byte2 */
                retryCount = pCoexSta->btRetryCnt;
                btInfoExt = pCoexSta->btInfoExt;
                /* BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE_FW_DETAIL, ("[BTCoex], retryCount = %d\n", retryCount)); */
index 8dfa9b9..2779dba 100644 (file)
@@ -1646,7 +1646,7 @@ static void halbtc8723b2ant_TdmaDurationAdjust(
                result = 0;
                WaitCount = 0;
        } else {
-               /* accquire the BT TRx retry count from BT_Info byte2 */
+               /* acquire the BT TRx retry count from BT_Info byte2 */
                retryCount = pCoexSta->btRetryCnt;
                BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE_FW_DETAIL, ("[BTCoex], retryCount = %d\n", retryCount));
                BTC_PRINT(
index 357802d..7b43584 100644 (file)
@@ -92,7 +92,7 @@ void ODM_TXPowerTrackingCallback_ThermalMeter(struct adapter *Adapter)
        u8 *deltaSwingTableIdx_TUP_B;
        u8 *deltaSwingTableIdx_TDOWN_B;
 
-       /* 4 2. Initilization (7 steps in total) */
+       /* 4 2. Initialization (7 steps in total) */
 
        ConfigureTxpowerTrack(pDM_Odm, &c);
 
@@ -213,7 +213,7 @@ void ODM_TXPowerTrackingCallback_ThermalMeter(struct adapter *Adapter)
 
        /* 3 7. If necessary, move the index of swing table to adjust Tx power. */
        if (delta > 0 && pDM_Odm->RFCalibrateInfo.TxPowerTrackControl) {
-               /* delta" here is used to record the absolute value of differrence. */
+               /* delta" here is used to record the absolute value of difference. */
                delta =
                        ThermalValue > pHalData->EEPROMThermalMeter ?
                        (ThermalValue - pHalData->EEPROMThermalMeter) :
index c241568..3b34a51 100644 (file)
@@ -118,7 +118,7 @@ u8 HalPwrSeqCmdParsing(
                                                &GET_PWR_CFG_MASK(PwrCfgCmd)
                                        );
 
-                                       /*  Write the value back to sytem register */
+                                       /*  Write the value back to system register */
                                        rtw_write8(padapter, offset, value);
                                }
                                break;
index 7d8f21f..23df729 100644 (file)
@@ -365,7 +365,7 @@ void rtw_hal_dm_watchdog_in_lps(struct adapter *padapter)
 {
        if (adapter_to_pwrctl(padapter)->bFwCurrentInPSMode == true) {
                if (padapter->HalFunc.hal_dm_watchdog_in_lps)
-                       padapter->HalFunc.hal_dm_watchdog_in_lps(padapter); /* this fuction caller is in interrupt context */
+                       padapter->HalFunc.hal_dm_watchdog_in_lps(padapter); /* this function caller is in interrupt context */
        }
 }
 
index 9950934..9c190b1 100644 (file)
@@ -103,7 +103,7 @@ static void odm_RxPhyStatus92CSeries_Parsing(
                pDM_Odm->PhyDbgInfo.NumQryPhyStatusCCK++;
                /*  */
                /*  (1)Hardware does not provide RSSI for CCK */
-               /*  (2)PWDB, Average PWDB cacluated by hardware (for rate adaptive) */
+               /*  (2)PWDB, Average PWDB calculated by hardware (for rate adaptive) */
                /*  */
 
                cck_agc_rpt = pPhyStaRpt->cck_agc_rpt_ofdm_cfosho_a;
@@ -178,7 +178,7 @@ static void odm_RxPhyStatus92CSeries_Parsing(
 
 
                /*  */
-               /*  (2)PWDB, Average PWDB cacluated by hardware (for rate adaptive) */
+               /*  (2)PWDB, Average PWDB calculated by hardware (for rate adaptive) */
                /*  */
                rx_pwr_all = (((pPhyStaRpt->cck_sig_qual_ofdm_pwdb_all) >> 1)&0x7f)-110;
 
index 3e58cb8..a738117 100644 (file)
@@ -13,7 +13,7 @@
 /* Define the debug levels */
 /*  */
 /* 1.  DBG_TRACE and DBG_LOUD are used for normal cases. */
-/* So that, they can help SW engineer to develope or trace states changed */
+/* So that, they can help SW engineer to developed or trace states changed */
 /* and also help HW enginner to trace every operation to and from HW, */
 /* e.g IO, Tx, Rx. */
 /*  */
@@ -34,7 +34,7 @@
 #define ODM_DBG_SERIOUS                                2
 
 /*  */
-/* Abnormal, rare, or unexpeted cases. */
+/* Abnormal, rare, or unexpected cases. */
 /* For example, */
 /* IRP/Packet/OID canceled, */
 /* device suprisely unremoved and so on. */
index 28f42c9..c79fc18 100644 (file)
@@ -28,7 +28,7 @@ typedef enum _HAL_STATUS {
 
 
 /*  */
-/*  Declare for ODM spin lock defintion temporarily fro compile pass. */
+/*  Declare for ODM spin lock definition temporarily from compile pass. */
 /*  */
 typedef enum _RT_SPINLOCK_TYPE {
        RT_TX_SPINLOCK = 1,
index 1e8b614..2b375e7 100644 (file)
@@ -192,7 +192,7 @@ static inline union recv_frame *try_alloc_recvframe(struct recv_priv *precvpriv,
                rtw_enqueue_recvbuf_to_head(precvbuf,
                                            &precvpriv->recv_buf_pending_queue);
 
-               /*  The case of can't allocte recvframe should be temporary, */
+               /*  The case of can't allocate recvframe should be temporary, */
                /*  schedule again and hope recvframe is available next time. */
                tasklet_schedule(&precvpriv->recv_tasklet);
        }
index 4894f7d..7853af5 100644 (file)
@@ -235,7 +235,7 @@ static void _InitQueueReservedPage(struct adapter *padapter)
        if (pHalData->OutEpQueueSel & TX_SELE_LQ)
                numLQ = bWiFiConfig ? WMM_NORMAL_PAGE_NUM_LPQ_8723B : NORMAL_PAGE_NUM_LPQ_8723B;
 
-       /*  NOTE: This step shall be proceed before writting REG_RQPN. */
+       /*  NOTE: This step shall be proceed before writing REG_RQPN. */
        if (pHalData->OutEpQueueSel & TX_SELE_NQ)
                numNQ = bWiFiConfig ? WMM_NORMAL_PAGE_NUM_NPQ_8723B : NORMAL_PAGE_NUM_NPQ_8723B;